Bootstrap collapse component not closing menu on clicking away

前端 未结 7 950
庸人自扰
庸人自扰 2021-01-04 01:57

When I click away the menu doesn\'t hide, I found this code at: http://getbootstrap.com/components/#navbar but doesn\'t work as it should.

7条回答
  •  时光取名叫无心
    2021-01-04 02:18

    The above displayed a weird behavior for me where sometimes a scroll bar would appear on the nav. That could be from some fancy css but the below fixed it for me.

    $(document).on('click',function(e){
      if($('#bs-example-navbar-collapse-1').hasClass('in')){
        $('.collapse').collapse('hide'); 
      }
    })
    

提交回复
热议问题