码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2017-07-14 14:43:38      阅读:321      评论:0      收藏:0      [点我收藏+]

标签:parent   open   win   list   add   find   ati   function   rem   


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

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

标签:parent   open   win   list   add   find   ati   function   rem   

原文地址:http://www.cnblogs.com/hofmann/p/7169800.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!