gpt4 book ai didi

javascript - Jquery分页滚动如facebook状态

转载 作者:行者123 更新时间:2023-11-28 16:17:04 27 4
gpt4 key购买 nike

我正在尝试像 this tutorial 一样进行分页滚动,当我使用

 if ($(window).scrollTop() == $(document).height() - $(window).height()) {

它不起作用,没有显示任何操作。所以我搜索并找到了一个解决方案:

 if($(window).scrollTop() + $(window).height() >= $("#productlist").height()) {

注意:#productlist 是我的容器 div 的 id。

但是当我这样做时,每当我滚动鼠标时,我的页面总是会附加数据。我想要的是,只有当滚动条位于页面底部时才加载新内容,就像facebook或twitter分页加载一样。

谁能告诉我,我该如何解决这个问题?

谢谢。

最佳答案

 $('#yourcontainerId').bind('scroll', function(){

if($(this).scrollTop() + $(this).innerHeight() >= $(this)[0].scrollHeight) {
alert('this will alert only when it reaches the end');
}
});

关于javascript - Jquery分页滚动如facebook状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11185202/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com