How to hide Twitter Bootstrap dropdown

后端 未结 24 2282
悲&欢浪女
悲&欢浪女 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 04:03

    Try this:

    $('.dropdown.open .dropdown-toggle').dropdown('toggle');
    

    This may also work for you:

    $('[data-toggle="dropdown"]').parent().removeClass('open');
    

提交回复
热议问题