我用它来检测滚动到页面底部。但是如何检测距离页面底部的距离?
if($(window).scrollTop() + $(window).height() == $(document).height() ) {
.. my ajax here
}
我的意思是我希望函数在底部为100px或200px时执行,而不是在页面底部。我该怎么改变呢?
另外:如果滚动位于显示加载内容的特定元素(比如我的大容器)的最后一个,则可能会捕获。
提前致谢
答案 0 :(得分:16)
var nearToBottom = 100;
if ($(window).scrollTop() + $(window).height() >
$(document).height() - nearToBottom) {
.. my ajax here
}
或滚动到.CONTAINER
的底部if ($(window).scrollTop() + $(window).height() >=
$('.CONTAINER').offset().top + $('.CONTAINER').height() ) {
.. my ajax here
}
答案 1 :(得分:5)
这会对你有帮助。
<script>
$(window).scroll(function () {
if ($(document).height() <= $(window).scrollTop() + $(window).height()) {
alert("End Of The Page");
}
});
</script>
浏览此链接以查看整篇文章,并详细说明其工作原理。
load more content when browser scroll to end of page in jquery