首页 > 代码库 > 给当前页或者跳转后页面的导航栏添加选中样式

给当前页或者跳转后页面的导航栏添加选中样式


$("ul.nav-list li a").each(function () {
//$("ul.nav-list li").removeClass("active");
if ($($(this))[0].href =http://www.mamicode.com/= String(window.location))
if ($(this).parent().find("li").length == 0) {
$(this).parent().addClass("active");
}
else {
$(this).parent().addClass("active open");
}
});

给当前页或者跳转后页面的导航栏添加选中样式