Bootstrap: How to close an open collapsed navbar when clicking outside of the MENU?

后端 未结 3 1961

I want to have my menu closed when the user clicks outside the menu, not only outside the navbar element. Because I have more collapses in my menu, this solution did not wor

3条回答
  •  时光取名叫无心
    2020-12-20 10:04

    You can use this to collapse if not clicking a link: fiddle

    $(document).click(function(e) {
        if (!$(e.target).is('a')) {
            $('.collapse').collapse('hide');        
        }
    });
    

提交回复
热议问题