学习记录,仅供参考!
$(function(){
// alert('窗口高度:'+$(window).height());
// alert('文档高度:'+$(document).height());
// alert('鼠标滚动高度:'+$(window).scrollTop()); //有不到1像素的误差(应该是滚动条上下的两个箭头的像素)
$(window).scroll(function(){
if ($(window).scrollTop()+$(window).height() >= $(document).height()-1) {
alert('已经到达底部了');
}
})
});