繁体   English   中英

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

[英]Anchor link for same and different page

我正在使用该代码:

$(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的东西。

谢谢!

谢谢你的答案,我做到了! :)

<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();
    }
});

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM