锚链接平滑滚动 发表于 2017-04-03 | 更新于 2017-04-03 | 阅读次数 1 jquery实现锚链接的平滑滚动且链接不带锚点 12345678910111213141516$(function(){ $('a[href*=#],area[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().top; $('html,body').animate({ scrollTop: targetOffset }, 1000); return false; } } });}) 本文作者: Pimi Chen 本文链接: http://pimichen.com/blog/jquery/锚链接平滑滚动.html 版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 3.0 许可协议。转载请注明出处!