How to change the main display of dropdown when an item is selected in bootstrap

后端 未结 3 2026
你的背包
你的背包 2020-12-21 02:03

This is the following http://jsfiddle.net/coderslay/enzDx/

I am trying to change the text Select as soon as an item is clicked

So if i selec

3条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-21 02:17

    You can check the click event on the dropdown-menu :

    $('.dropdown-menu > li').click(function() {
        var $toggle = $(this).parent().siblings('.dropdown-toggle');
        $toggle.html(" " + $(this).text() + "")
    });
    

    jsFiddle : http://jsfiddle.net/enzDx/6/ .

提交回复
热议问题