一些jquery常用方法

1、jquery实现平滑滚动到指定锚点

$(document).ready(function() {
  $("a.topLink").click(function() {
      $("html, body").animate({
         scrollTop: $($(this).attr("href")).offset().top + "px"
      }, {
      duration: 500,
      easing: "swing"
    });
    return false;
  });
});

 

posted @ 2017-03-10 15:25  笑点非常高  阅读(156)  评论(0编辑  收藏  举报