我有简单的代码来查看页面底部是否达到警报。 但它没有按我的意愿工作。
我向下滚动并再次到顶部,然后显示警告框。 下面是代码。
$(document).ready(function () {
$(window).scroll(function () {
if ($(window).scrollTop() + $(window).height() == $(document).height()) {
alert("bottom!");
}
});
});
答案 0 :(得分:1)
我终于找到了这个解决方案
$(window).scroll(function() {
if (document.body.scrollHeight == document.body.scrollTop + window.innerHeight) {
alert("bottom!");
}
});