为什么 smooth scroll JS 在我的网站上不起作用

why smooth scroll JS is not working in my web

我需要帮助,我一直在为这件事苦苦挣扎一整天,但真的找不到为什么这不起作用的问题。

https://jsfiddle.net/bk51xgrq/13/

$(function () {
  $('a[href*="#"]').click(function () {
     var $target = $(this.hash);
     $target = $target.length ? $target : $('html');
     var targetOffset = $target.offset().top;
     $('html,body').animate({scrollTop: targetOffset}, {duration: 8600, easing: 'easeInBounce'});
  });
});

您正在使用 jQuery 但您尚未将其包含在您的项目中。您可以 link 使用 html 文档中的 CDN

 <!--jQuery -->
   <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>