$(window).bind('scroll', function () {
console.log($("body").scrollTop()); // 滑動(dòng)的距離
console.log($(window).height()); // 屏幕高
console.log($("body").height()); // 頁(yè)面的高度
console.log($('#DivID').offset().top); // 頁(yè)面的高度
});
回到頂部:$('body,html').animate({scrollTop:0},500);