Jquery当前页面链接样式

时间:2015-03-11 13:46:44

标签: javascript jquery html css

重复,抱歉。答案可以在这里找到:Highlight current page in jquery

2 个答案:

答案 0 :(得分:0)

使用location.href。

此帖子网址使用window.location.pathname:“/ questions / 28988304 / jquery-current-page-link-styling”

此帖子网址使用location.href:“Jquery current page link styling

答案 1 :(得分:0)

使用window.location.href代替window.location.pathname

if ( $(this).attr('href') == window.location.href ) {       
    $(this).addClass('current');
}