var abouturl=location.href;//获取地址
var str_after = abouturl.split("#")[1];//获取后面字符
$("li").each(function () {
var a=$(this).children().attr('href');
if(a=='#'+str_after){
$("li a").removeClass("active");
$(this).children().addClass("active")
}
});
获取地址栏特定字符后面的字符
最新推荐文章于 2023-08-14 10:52:10 发布