平滑链接滚动不是整个身体,但某些div

时间:2015-04-22 08:19:42

标签: jquery html

我使用此代码进行流畅的链接滚动:

    function filterPath(string) {
    return string
      .replace(/^\//,'')
      .replace(/(index|default).[a-zA-Z]{3,4}$/,'')  
      .replace(/\/$/,'');
    }

$('a[href*=#]').each(function() {
if ( filterPath(location.pathname) == filterPath(this.pathname)
&& location.hostname == this.hostname
&& this.hash.replace(/#/,'') ) {
  var $targetId = $(this.hash), $targetAnchor = $('[name=' + this.hash.slice(1) +']');
  var $target = $targetId.length ? $targetId : $targetAnchor.length ? $targetAnchor : false;
   if ($target) {
        $(this).click(function() {
            var targetOffset = $target.offset().top;
            $('html, body, .container-1-2').animate({
                scrollTop: $target.offset().top - 70}, 600
             );

            return false;
        });
  }
}
});

'滚动不是整个页面,而只是滚动类容器1-2的某个div。

我遇到的问题是,当单击锚链接时,它会滚动到指定的id,但是当我再次单击相同的链接时,它会滚动到顶部。只是无法弄清楚如何防止它再次滚动到顶部并保持静止。

1 个答案:

答案 0 :(得分:1)

我找到了解决方案。

$(function() {
    $('a[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) {
            $('.content-container').animate({
                scrollTop: $('.content-container').scrollTop() + target.offset().top - 70
            }, 1000);
        return false;
        }
     }
   });
});