twitter bootstrap dropdown doesn't toggle closed when it should

后端 未结 8 1050
伪装坚强ぢ
伪装坚强ぢ 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条回答
  •  Happy的楠姐
    2021-02-10 00:49

    My fix for more than one dropdowns in nav menu: Other solutions doesn't work for me

    $('.dropdown-toggle').on('click', function (e) {
          $('.dropdown-toggle').each(function (i,elem) {
              if (elem != e.target) $(elem.parentElement).removeClass('open');
          });
    })
    

提交回复
热议问题