Far*_*eal 7 jquery jquery-plugins infinite-scroll
嗨,有没有人知道在哪里可以获得无限滚动插件,在你加载更多帖子之前有一个你点击的按钮?
这是我正在寻找的(看看右下角的更多按钮)

从jQuery无限滚动插件的文档页面:
在1.4中,您可以随意触发下一页内容的加载.您将首先取消绑定默认行为.然后随时触发下一次拉动.
// unbind normal behavior. needs to occur after normal infinite scroll setup.
$(window).unbind('.infscr');
// call this whenever you want to retrieve the next page of content
// likely this would go in a click handler of some sort
$(document).trigger('retrieve.infscr');
Run Code Online (Sandbox Code Playgroud)
它应该解决你的问题.