网页锚文本平滑滚动效果

#链接在鸡西网站制作中比较常见,但默认的滚动效果过于粗暴了。为了使效果更平滑友好一些,可以尝试用这个方法,此代码依赖JQuery。
//通用版 任何 # 链接都能识别到 $(function() { $('a[href*=#]:not([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) { $('html,body').animate({ scrollTop: target.offset().top }, 1000); return false; } } }); });