滚动到页面底部触发分页事件

$(window).scroll(function () {
var scrollTop = $(this).scrollTop(); // 页面卷上去的高度
var windowHeight = document.body.clientHeight; // 当前屏幕上页面的高度
var docHeight = $(document).height(); // 文档的高度
// 表示,如果滑到距离底部将近50px的时候,开始触发事件
if (docHeight - (scrollTop + windowHeight) < 50 ) {
// do something
}
});

posted @ 2017-10-14 14:53  ALLpick  阅读(869)  评论(0编辑  收藏  举报