twitter bootstrap dropdown doesn't toggle closed when it should

后端 未结 8 1026
伪装坚强ぢ
伪装坚强ぢ 2021-02-10 00:16

Oh man, I\'ve been tearing my hair out over this. 4 hours on a dropdown.

I\'m using Twitter Bootstrap.

The fixed nav at the top has a dropdown, pretty standard s

8条回答
  •  [愿得一人]
    2021-02-10 00:48

    Nothing worked for me, except this:

    $('.dropdown-menu li a').on('click', function(e) {
        $('.dropdown-toggle').dropdown('toggle');
        e.stopPropagation();
    });
    

提交回复
热议问题