BootStrap3 keep the dropdown menu open after click on the item

后端 未结 3 566
别那么骄傲
别那么骄傲 2020-11-29 11:50

I\'m using bootstrap3.0, with it excellent drop-down menu.

If I click out side of the drop-down menu the menu will disappear, and this is quite right.

but

3条回答
  •  隐瞒了意图╮
    2020-11-29 12:50

    Here is one way to keep the dropdown open after click...

    $('#myDropdown').on('hide.bs.dropdown', function () {
        return false;
    });
    

    Demo: http://www.bootply.com/116350

    Another option is to handle the click event like this..

    $('#myDropdown .dropdown-menu').on({
        "click":function(e){
          e.stopPropagation();
        }
    });
    

    Demo: http://www.bootply.com/116581

提交回复
热议问题