How to hide Twitter Bootstrap dropdown

后端 未结 24 2285
悲&欢浪女
悲&欢浪女 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:50

    Reading the documentation and using JavaScript it could be done using the toggle method:

    $('.button-class').on('click',function(e) {
        e.preventDefault();
        $('.dropdown-class').dropdown('toggle');
    }
    

    You can read about it in: http://getbootstrap.com/javascript/#dropdowns-methods

提交回复
热议问题