Adding to a HTML text field by clicking items in a multiple select box

后端 未结 4 511
[愿得一人]
[愿得一人] 2021-01-26 19:31

I\'m wondering if it is possible that when I click on an item in a multiple select box in HTML that it goes into another form box? Basically, when I click on something I want th

4条回答
  •  误落风尘
    2021-01-26 19:44

    You can see this fiddle :

    http://jsfiddle.net/ppSv4/

    $('select option').on('click',function(){
        $('#texthere').val( $(this).attr('value') );
    });
    

提交回复
热议问题