我正在遇到一个情况!
每当用户滚动到滚动条的最底部时,我都会尝试更新 jscrollpane 中的内容。
没有找到解决方案,我尝试在滚动条位于底部时发送 ajax 请求。
但是,每次滚动条到达底部时,事件都会进入一个不停运行的进程。
我尝试使用 event.stopPropagation(),但没有成功!
这是我正在工作的代码:
$( 'div.scroll-pane-produts' ).bind( 'jsp-scroll-y',
function( event, scrollPositionY, isAtTop, isAtBottom ) {
if( isAtBottom ) {
event.stopPropagation();
// $.post('some-url');
alert('infinite alerts from here');
}
}
).jScrollPane();
虽然问题本身与来自 jscrollpane 的事件有关,但我也很欣赏另一个通过 ajax 请求更新 DIV 内容的解决方案!
提前致谢...