URL 上带有锚点的平滑滚动

Smooth Scroll with Anchor on URL

我想在我的网站上使用 Smooth Scroll,但我需要 URL 上的锚点 ID,以提供浏览器后退按钮的功能。问题是:我需要 #anchor 在 400 毫秒之前出现,但我不知道如何在我的脚本中调用该变量。

$(document).ready(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) {
        var targetOffset = $target.offset().left;
        $('html,body')
        .animate({scrollLeft: targetOffset}, 400);
 var timer = setTimeout(function() {  
        window.location.href = '#[anchor]';
   }, 400);
       return false;
      }
    }
  });
});

window.location.href = '#[anchor]'; 更改 url 但不带锚名称。我该如何更改?

锚存储在hash变量中,查看示例并查看注释:

if (target.length) {

    var _this = this; // first save the reference to 'this'

    var targetOffset = $target.offset().left;
    $('html,body').animate({scrollLeft: targetOffset}, 400);
    var timer = setTimeout(function() {  
        window.location.href = _this.hash; // '_this.hash' contains the anchor
    }, 400);
    return false;

您也可以这样使用window.location.hash

window.location.hash = _this.hash;