第一种方式是直接使用锚点配合链接标签:
<h2 id="h2-anchor">Scroll to here</h2> <a href="#h2-anchor">Jump to H2</a>
第二种方式使用jQuery中的animate方法实现:
var target= $('#h2-anchor').offset().top; $('body').animate({scrollTop:target}, 300);
原文地址:http://blog.csdn.net/dm_vincent/article/details/44258243