我正在尝试使我的网站滚动到单独页面上的特定帖子。我想出了这背后的PHP部分来为我生成锚,但是我坚持使用JS部分。我设法使网页从位置0,0开始,然后转到静态锚标记。我所困扰的是如何使JS从当前URL提取锚标记,然后使其在短暂延迟后平滑滚动到给定标记。

我当前的代码是:

$(document).ready(function() {
    if (location.hash) {
        window.scrollTo(0, 0);
      }
});

setTimeout("window.location.hash = '#scroll';", 5000);


我发现以下代码片段从URL提取了一个锚标记,但是我不确定在延迟后如何执行它。

    $(document).ready(function() {
      function filterPath(string) {
      return string
        .replace(/^\//,'')
        .replace(/(index|default).[a-zA-Z]{3,4}$/,'')
        .replace(/\/$/,'');
      }
      var locationPath = filterPath(location.pathname);
      var scrollElem = scrollableElement('html', 'body');

      $('a[href*=#]').each(function() {
        var thisPath = filterPath(this.pathname) || locationPath;
        if (  locationPath == thisPath
        && (location.hostname == this.hostname || !this.hostname)
        && this.hash.replace(/#/,'') ) {
          var $target = $(this.hash), target = this.hash;
          if (target) {
            var targetOffset = $target.offset().top;
            $(this).click(function(event) {
              event.preventDefault();
              $(scrollElem).animate({scrollTop: targetOffset}, 400, function() {
                location.hash = target;
              });
            });
          }
        }
      });

      // use the first element that is "scrollable"
      function scrollableElement(els) {
        for (var i = 0, argLength = arguments.length; i <argLength; i++) {
          var el = arguments[i],
              $scrollElement = $(el);
          if ($scrollElement.scrollTop()> 0) {
            return el;
          } else {
            $scrollElement.scrollTop(1);
            var isScrollable = $scrollElement.scrollTop()> 0;
            $scrollElement.scrollTop(0);
            if (isScrollable) {
              return el;
            }
          }
        }
        return [];
      }

    });

最佳答案

我不相信setTimeout接受任何以字符串形式传递的旧代码,仅接受函数名称。尝试改用匿名函数:

setTimeout(function() { window.location.hash = '#scroll'; }, 5000);

10-08 12:25