js 返回顶部


原文链接: js 返回顶部
    scrollToTop : function() {
          $('a#back-to-top').click(function() {
                $('html, body').animate({scrollTop:0},'slow');
                return false;
          });)
`