Close responsive navbar automatically

前端 未结 12 1668
天命终不由人
天命终不由人 2020-12-05 02:04

I\'m using a Bootstrap responsive navbar. When the navbar is collapsed and I open the menu and click on a menu item, the menu doesn\'t close automatically, and I have to do

12条回答
  •  隐瞒了意图╮
    2020-12-05 02:39

    Maybe someone need to hide menu when just click to somewhere else (i have supposed like there is no submenus). Then just add this code somewhere after jquery, bootstrap.js

    $('button.navbar-toggle').focusout(function(){
            $(".navbar-collapse").collapse('hide');
        });
    

提交回复
热议问题