Jscrollpane - 当 isAtBottom 时触发函数

发布于 2024-11-15 20:27:48 字数 233 浏览 1 评论 0原文

我知道当“isAtBottom”最终变为 true 时,jscrollpane 会触发一个函数。

但是这个函数的名称分别是什么,我如何检查“isAtBottom”最终是否为真?

http://jscrollpane.kelvinluck.com/events.html

I know that the jscrollpane fires a function when "isAtBottom" finally becomes true.

But what is the name of this function respectively how can I check if "isAtBottom" finally becomes true?

http://jscrollpane.kelvinluck.com/events.html

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

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

发布评论

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

评论(1

嗫嚅 2024-11-22 20:27:48

jScrollPane 不会针对该条件触发函数,而是触发事件。您可以像绑定到任何其他 jQuery 事件一样绑定到该事件:

$('.your-scroll-pane').bind(
    'jsp-arrow-change',
    function(event, isAtTop, isAtBottom, isAtLeft, isAtRight) {
        // Now look at the is* parameters and do what you
        // need to do. All four of the is* parameters are
        // booleans.
    }
);

jScrollPane doesn't fire a function for that condition, it fires an event. You can bind to the event the same way you'd bind to any other jQuery event:

$('.your-scroll-pane').bind(
    'jsp-arrow-change',
    function(event, isAtTop, isAtBottom, isAtLeft, isAtRight) {
        // Now look at the is* parameters and do what you
        // need to do. All four of the is* parameters are
        // booleans.
    }
);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文