Show selected option in bootstrap dropdown list menu

后端 未结 5 1459
迷失自我
迷失自我 2020-12-28 15:56

I have dropdown list in my bootstrap menu.

  • 5条回答
    •  灰色年华
      2020-12-28 16:30

      You can go through this simple example.

      Add the below script :

      $(function(){
      
          $(".dropdown-menu li a").click(function(){
      
            $(".btn:first-child").text($(this).text());
            $(".btn:first-child").val($(this).text());
      
         });
      
      });
      

      Also you can try this sample in http://jsbin.com/owuyix/4/edit

    提交回复
    热议问题