Bootstrap dropdown closing when clicked

后端 未结 9 2421
南旧
南旧 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:26

    Thank you for the above answer, I was having the same issue w/ submenus under the dropdown menus. Using the above solution I was able to solve the problem for this as well.

    $('.dropdown-menu .dropdown-submenu a[data-toggle="dropdown-submenu"]').click(function (e)
    {                   
        e.stopPropagation();
    });
    

提交回复
热议问题