Get selected item value from Bootstrap DropDown with specific ID

前端 未结 7 704
鱼传尺愫
鱼传尺愫 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:53

    Did you just try

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

    It works for me :)

提交回复
热议问题