Bootstrap导航菜单点击后⽆法⾃动添加active的处理⽅法
导航菜单Bootstrap提供了很丰富的前后端框架,为不精通CSS的程序猿们提供了很⼤的便利。前段时间在使⽤Bootstrap中的菜单控件时,其中的链接点击后,⽆法⾃动添加active类,即⽆法⾃动激活。需要适当做如下处理才OK。
废话说了,直接上代码:
<ul class="tabbable faq-tabbable">
<li class="active"><a href="@Url.Action(" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" Index", "MyContract", new { area = "MyData" })">我的合同</a></li>  <li><a href="@Url.Action(" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" Index", "MyCashout", new { area = "MyData" })">我的请款</a></li>
<li><a href="@Url.Action(" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" Index", "MyReceive", new { area = "MyData" })">我的⼊库</a></li>
<li><a href="@Url.Action(" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" Index", "MyCashback", new { area = "MyData" })">我的付款</a></li>
</ul>
这是⼀个典型的导航菜单,现在添加如下的脚本处理: 
$(function () {
$(".faq-tabbable").find("li").each(function () {
var a = $(this).find("a:first")[0];
if ($(a).attr("href") === location.pathname) {
$(this).addClass("active");
} else {
$(this).removeClass("active");
}
});
})
原理很简单,就是到所有的li标签,对其a标签的链接地址进⾏判断,如何和当前浏览器的地址⼀致,就认为是当前应该激活的菜单,添加active类,否则就取消。
如此,即可~~
以上这篇Bootstrap导航菜单点击后⽆法⾃动添加active的处理⽅法就是⼩编分享给⼤家的全部内容了,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。