// 监听高度$(window).scroll(function () { var scrollTop = document.body.scrollTop || document.documentElement.scrollTop;// 页面高度差 var pageHeight = $(document).height(); //整个html页面高度 var viewHeight = $(window).height(); //窗口的高度// alert((scrollTop + viewHeight) > (pageHeight));// alert(pageHeight + "整个html页面高度");// alert(scrollTop); //滚轮的高度//当滚动到底部时// pageHeight - viewHeight - scrollTop = 0