Bootstrap dropdown closing when clicked

后端 未结 9 2435
南旧
南旧 2020-11-29 02:00

I put a form inside a bootstrap dropdown, but when I click any of the fields in the form, the dropdown goes away. I have this piece of code but I don\'t know where to put it

9条回答
  •  青春惊慌失措
    2020-11-29 02:08

    You need to stop event from bubbling up the DOM tree:

    $('.dropdown-menu').click(function(e) {
        e.stopPropagation();
    });
    

    event.stopPropagation prevents event from reaching the node where it's eventually handled by Bootstrap hiding menu.

提交回复
热议问题