jquery 平滑滚动页面到某个锚点

 1 $(document).ready(function() {
 2         $("a.topLink").click(function() {
 3                 $("html, body").animate({
 4                         scrollTop: $($(this).attr("href")).offset().top + "px"
 5                 }, {
 6                         duration: 500,
 7                         easing: "swing"
 8                 });
 9                 return false;
10         });
11 });