相同和不同页面的锚点链接

时间:2015-02-25 16:30:33

标签: javascript jquery html anchor

我正在使用该代码:

$(function() {
  $('a[href*=#]:not([href=#])').click(function() {
    if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
      var target = $(this.hash);
      target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
      if (target.length) {
        $('html,body').animate({
          scrollTop: target.offset().top
        }, 1000);
        return false;
      }
    }
  });
});

<a href="#allcontentcontact">链接到div <div id="allcontentcontact"></div>

问题是: “#allcontentcontact”在我的主页上,因此只有当我在主页上时,代码才能正常运行。但是我有一个固定的菜单链接到其他页面!所以当我在另一个页面上时,我需要能够使我的href链接到该div的东西。

谢谢!

1 个答案:

答案 0 :(得分:0)

感谢您的回答,我做到了! :)

<script>
var url = "http://192.168.1.157/wp/";
$(function(){
  if (location.href==url){
    $('#menu #mylink').attr("href","#bluecontent");
    $('#menu #mylink2').attr("href","#allcontentcontact");
  }
});
</script>

URL很奇怪,因为我在localhost上编码,但代码运行完美。 :)

和HTML

<a id="mylink" href="<?php bloginfo('url'); ?>#bluecontent"><span>Parceiros</span></a>

<a id="mylink2" href="<?php bloginfo('url'); ?>#allcontentcontact"><span>Contato</span></a>

差不多完成了。所有链接都能很好地将我顺利地带到他们指定的锚点。

问题是:我的脚本滑动到其他页面上的锚点,包括URL上的#bluecontent和#allcontentcontact。是否可以从URL中删除它? 这是代码:

var jump=function(e)
{
   if (e){
       e.preventDefault();
       var target = $(this).attr("href");
   }else{
       var target = location.hash;
   }

   $('html,body').animate(
   {
       scrollTop: $(target).offset().top
   },2000,function()
   {
       location.hash = target;
   });

}

$('html, body').hide();

$(document).ready(function()
{
    $('a[href^=#]').bind("click", jump);

    if (location.hash){
        setTimeout(function(){
            $('html, body').scrollTop(0).show();
            jump();
        }, 0);
    }else{
        $('html, body').show();
    }
});