检测 div 滚动的底部(w/jScrollPane)

发布于 2024-11-30 13:10:50 字数 214 浏览 0 评论 0原文

我有一个可滚动的 div,当滚动到底部时将加载 5 个新项目。我正在使用 jScrollPane (http://jscrollpane.kelvinluck.com/),尽管它是一个很棒的插件,但似乎阻止了 scrollTop() 工作,因此检测滚动到达底部的典型方法不起作用。

有没有人有替代/推荐的方法来检测 jscrollpane-ified div 是否到达底部?

干杯。

I have a scrollable div that will load 5 new items when scrolled to the bottom. I'm using jScrollPane (http://jscrollpane.kelvinluck.com/) and, despite being a great plug in, seems to prevent scrollTop() from working, so the typical method for detecting the scroll reaching the bottom does not work.

Does anyone have an alternative/ recommended method for detecting if the jscrollpane-ified div has reached the bottom?

Cheers.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

匿名。 2024-12-07 13:10:50

在 maxedison 的帮助下解决了我自己。

按照此处所述访问 api,然后:

if($('#scollpane').outerHeight() + api.getContentPositionY() >= api.getContentHeight())
{
    alert('You are at the bottom bro');
}

Solved myself, with maxedison's help.

Access the api as outlined here and then:

if($('#scollpane').outerHeight() + api.getContentPositionY() >= api.getContentHeight())
{
    alert('You are at the bottom bro');
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文