Bootstrap 3 Hide Dropdown Menu on Menu Item Click

后端 未结 6 1081
眼角桃花
眼角桃花 2021-02-04 07:05

Check out the fiddle. I have a basic Bootstrap 3 responsive nav like so:

    
&
6条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-04 07:44

    I am new to Bootstrap but with a small changed to the above code it works beautifully now. Remember that when you click on the logo the drop-down menu should close too, that is why I have added navbar-header to it!

    jQuery(document).ready(function () {
            jQuery(".nav a, .navbar-header a").click(function(event) {
                    // check if window is small enough so dropdown is created
                   jQuery(".navbar-collapse").removeClass("in").addClass("collapse");
            });
    });
    

提交回复
热议问题