How to hide Twitter Bootstrap dropdown

后端 未结 24 2330
悲&欢浪女
悲&欢浪女 2020-12-13 03:37

This is getting annoying — when I click on an item in a Bootstrap dropdown, the dropdown doesn\'t close. I have it set up to open a Facebox lightbox when you click the dropd

24条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-13 03:38

    this worked for me, i had a navbar and several pulldown menus.

    $(document).ready(function () {
        $('a.dropdown-toggle').each(function(){
            $(this).on("click", function () {
                $('li.dropdown').each(function () {
                    $(this).removeClass('open');
                });
            });
        });
    });
    

提交回复
热议问题