js 获取url锚点内容

来源:互联网 发布:浴室柜推荐 知乎 编辑:程序博客网 时间:2024/06/08 14:16

$(function(){
    varthisId = window.location.hash;
    if(thisId !="" && thisId != undefined){
        $(thisId).addClass("uw3c");
    }
})


$(function(){

   var thisId = window.location.hash;
   if(thisId != "" && thisId != undefined){
       $('.along-page .href-text').text($(thisId).text());
   }

$('.footer-nav li a').click(function(){
$('.along-page .href-text').text($(this).text());
});
})
0 0
原创粉丝点击