Get selected item value from Bootstrap DropDown with specific ID

前端 未结 7 758
鱼传尺愫
鱼传尺愫 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条回答
  •  -上瘾入骨i
    2020-12-24 07:16

    Works GReat.

    Category Question Apple Banana Cherry
      
    
    $(document).ready(function(){
        $("#btn_cat div a").click(function(){
           alert($(this).text());
    
        });
    });
    

提交回复
热议问题