$('li a.firstMenu').each(function(){
if(this.href == window.location.href){
$(this).parent().addClass('active');
}
})
jQuery 根据当前地址,添加active样式
最新推荐文章于 2022-03-30 20:36:55 发布
$('li a.firstMenu').each(function(){
if(this.href == window.location.href){
$(this).parent().addClass('active');
}
})