滚动到锚点后关闭导航栏

时间:2015-08-28 06:44:18

标签: jquery html css twitter-bootstrap-3

我目前正在使用一个使用bootstrap的寻呼机网站,在导航栏中我有一个锚点。每当我进入移动版本的锚点时,菜单都会保持打开并阻止内容。单击链接/锚点后,我该怎么办才能关闭菜单。

2 个答案:

答案 0 :(得分:0)

使用bootstrap javascript函数$().dropdown('toggle')

有关详细信息,请参阅文档Bootstrap Docs

答案 1 :(得分:0)

$('.navbar-collapse a').click(function(){
    $(".navbar-collapse").collapse('hide');
});

这对我有用

相关问题