单击时隐藏下拉菜单 - Bootstrap

时间:2015-07-22 08:13:30

标签: javascript jquery html css twitter-bootstrap

我的网站上有一个导航栏,所有链接都是通过AJAX在容器中加载内容。

现在,我需要在点击链接时隐藏下拉菜单。这不是bootstrap的正常行为。

这是我在小提琴中的代码。

$(".dropdown-menu a").click(function() { $(this).closest(".dropdown-menu").prev().toggle(); });

http://jsfiddle.net/fw7vh/158/

我最近浏览了现有的答案,但它删除了下拉按钮。请指教。谢谢!

3 个答案:

答案 0 :(得分:2)

尝试:

gcloud beta container

答案 1 :(得分:0)

如果我理解你的问题,这可能对你有帮助。

GaryStokesKSPS&&&&RT @PBS: .@SciGirls Season 3 is now on @YouTube! Watch now: ...
\________________/\_____________________________________/@\_____/
     (.*)&&&&                 greedy match .*              group

答案 2 :(得分:0)

您可以轻松更换代码

^(.*?)&&&&.*?@([A-Za-z0-9_]+)
    ↑       ↑
the question marks make this non-greedy

用这个

$(".dropdown-menu a").click(function() {
  $(this).closest(".dropdown-menu").prev().toggle(); 
});

这是工作fiddle