Get selected item value from Bootstrap DropDown with specific ID

前端 未结 7 754
鱼传尺愫
鱼传尺愫 2020-12-24 06:10

I am \"creating\" my own \"ComboBox\" using Bootstrap 3 and JavaScript. Here is the JSFiddle for what I have so far:

7条回答
  •  攒了一身酷
    2020-12-24 06:52

    $('#demolist li').on('click', function(){
        $('#datebox').val($(this).text());
    });
    

    http://jsfiddle.net/kcpma/18/

提交回复
热议问题