Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在这里得到的几乎和这个例子一样:iScroll教程
我想要的是在滚动结束时执行 Ajax 请求,例如 Facebook 所做的。我可以用这个 iscroll 框架做到这一点吗?
如果我能做到这一点。如何?:)
在构建 iScroll 时,您应该提供一个函数作为onBeforeScrollEnd(that, event)oronScrollEnd(that)选项(我现在不知道哪个是最好的)。
onBeforeScrollEnd(that, event)
onScrollEnd(that)
在该函数中,您检查that.y == that.maxScrollY在哪种情况下您是否处于垂直滚动的末尾。
that.y == that.maxScrollY