公用页面 导航跳转
来源:4-2 通用JS工具类封装(网络数据请求功能)
慕用8128790
2018-01-21
导航跳转的时候,可以用下面的方法来为跳转的导航添加样式吗? 有没有更好的方法?
$(".navlis a").each(function(){
$this = $(this);
if($this[0].href == window.location.href){
$this.addClass('firthNav');
}
});
console.log($this[0].href)
写回答
1回答
-
Rosen
2018-01-22
可以在导航上加个地址的数据,取window.location.pathname就够了,然后用条选择器就可以搞定
00
相似问题