$(window).bind('scroll', function () {
console.log($("body").scrollTop()); // 滑动的距离
console.log($(window).height()); // 屏幕高
console.log($("body").height()); // 页面的高度
console.log($('#DivID').offset().top); // 页面的高度
});
回到顶部:$('body,html').animate({scrollTop:0},500);