给当前页或者跳转后页面的导航栏添加选中样式
Posted hofmann
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了给当前页或者跳转后页面的导航栏添加选中样式相关的知识,希望对你有一定的参考价值。
$("ul.nav-list li a").each(function () {
//$("ul.nav-list li").removeClass("active");
if ($($(this))[0].href == String(window.location))
if ($(this).parent().find("li").length == 0) {
$(this).parent().addClass("active");
}
else {
$(this).parent().addClass("active open");
}
});
以上是关于给当前页或者跳转后页面的导航栏添加选中样式的主要内容,如果未能解决你的问题,请参考以下文章