开发者问题收集

jQuery 滚动到另一个页面上的部分

2021-05-30
511

我有一个网站,它使用 jQuery 在几个部分之间滚动(在 page1.html 中)。现在,我向网站添加了另一个页面(page2.html)。

我希望 page2.html 标题中的链接链接回 page1.html 中的相应部分。

在 page2.html 中我写道:

  <li><a href="page1.html#splash">Home</a></li>

这链接回 page1.html#splash 。但在第 1 页上,网站不会滚动到相应的部分。

我的 JavaScript 是:

$(document).ready(function(){

$('a[href=\\#]').click(function(e){
    e.preventDefault();
    $('nav').removeClass('visible');
    $('html,body').stop().animate({scrollTop: $('.'+$(this).data('scrollto')).offset().top-65 }, 700, 'easeInOutExpo', function(){});
});

我已经尝试过的:

我试图将在 其他地方 找到的以下代码添加到 page1.html:

    <script>
$(document).ready(function(){
  // Add smooth scrolling to all links
  $("a").on('click', function(event) {

    if (this.hash !== "") {
      // Prevent default anchor click behavior
      event.preventDefault();

      var hash = this.hash;

      $('html, body').animate({
        scrollTop: $(hash).offset().top
      }, 800, function(){

        // Add hash (#) to URL when done scrolling (default click behavior)
        window.location.hash = hash;
      });
    }
  });
});
</script>

但没有滚动到正确的部分,控制台显示以下错误: index.html:19 Uncaught ReferenceError: $ is not defined

坦率地说,由于缺乏这方面的专业知识,我被困在了这一点上。

如何管理网站从另一个页面转到正确部分?

2个回答

一旦您离开该页面,上一页的 JavaScript 就无法控制它。因此,您需要使用 jQuery 在新页面加载时对其进行处理。将此代码放在 page1.html 上,将注释更改为滚动命令:

$(document).ready(function() {
    if (window.location.href.includes('#splash')) {
        let animationTime = 100;
        $('html, body').animate({
            scrollTop: $('.splash').offset().top
        }, animationTime);
    }
});
sebastiandoe5
2021-05-30
Uncaught ReferenceError: $ is not defined 

当您的页面未获取 JQuery

时,会出现此类错误
Asif
2021-05-30