我有这个功能,当用户距离窗口底部 500 像素时会触发一次点击。
一切正常,除非我在 css 中将我的 html 和 body 设置为 height:100%。
这是“工作”脚本。
$(document).ready(function() {
var timeout = '';
$(window).scroll(function (e) {
var intBottomMargin = 500;
clearTimeout(timeout);
//if less than intBottomMargin px from bottom
if ($(window).scrollTop() >= $(document).height() - $(window).height() - intBottomMargin) {
timeout = setTimeout(function(){
$("#next-paginav")[0].click();
}, 300);
}
});
});
当我的 html 和 body 是 100% 高度时,如何使相同的脚本工作?
我确信这真的很简单。