当你的才华不能撑起你的野心时,就是你该选择学习的时候了!

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


$("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");
}
});

posted @ 2017-07-14 13:44  hofmann  阅读(395)  评论(0编辑  收藏  举报