Twitter Bootstrap mobile nav: hide menu after clicking menu link

后端 未结 7 845
悲&欢浪女
悲&欢浪女 2020-12-15 05:56

I\'m looking for a way to make the Twitter Bootstrap mobile/tablet nav automatically hide/collapse after clicking a menu link. I have a lot of menu items and so when users e

7条回答
  •  借酒劲吻你
    2020-12-15 06:02

    If you are using sub menu, you have to modify @user2562923's code as follow :

            $('.navbar-collapse a').click(function (e) {
                if( $(e.target).is('a') && $(e.target).attr('class') != 'dropdown-toggle' ) {
                    $('.navbar-collapse').collapse('toggle');
                }
            });
    

提交回复
热议问题