我正在尝试使用 javascript slimscroll 插件向页面添加自动分页。我需要的是检测到该页面末尾上方几乎 200px 的位置,以便我可以在滚动条的这个位置调用用于显示下一页(将附加在底部)的函数。我在 slimscroll 中使用 'slimscrolling' 事件,因此我可以随时跟踪滚动的位置。但是当 div 加载了两个或三个这样的页面时,我怎样才能得到一个比当前底部略高于 200px 的位置。如果我使用“slimscroll”事件而不是“slimscrolling”事件,除了“顶部”或“底部”之外,我什么也得不到。请帮忙
$("#learn-notifications-inner").slimscroll().bind("slimscrolling", function(e, pos) {
// somehow find the position (new_position) which is 200px above the current bottom
if(pos >= new_position)
paginate_notifications()
});