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

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

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

最佳答案

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.
    }
);

10-08 20:14