jQuery滚动到锚点

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery滚动到锚点相关的知识,希望对你有一定的参考价值。

  1. $('a[href*="#"]').click(function(event){
  2. //prevent the default action for the click event
  3. event.preventDefault();
  4.  
  5. //get the full url - like mysitecom/index.htm#home
  6. var full_url = this.href;
  7.  
  8. //split the url by # and get the anchor target name - home in mysitecom/index.htm#home
  9. var parts = full_url.split("#");
  10. var trgt = parts[1];
  11.  
  12. //get the top offset of the target anchor
  13. var target_offset = $("#"+trgt).offset();
  14. var target_top = target_offset.top;
  15.  
  16. //goto that anchor by setting the body scroll top to anchor top
  17. $('html, body').animate({scrollTop:target_top}, 500);
  18. });

以上是关于jQuery滚动到锚点的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript Jquery Smotth滚动到锚点链接

平滑滚动到锚点

Vue路由器导航或滚动到锚点(#锚点)

如何检测自动滚动到锚点?

无法滚动到锚点

Angular4 - 滚动到锚点