嗨,有没有人知道在哪里可以获得无限滚动插件,在你加载更多帖子之前有一个你点击的按钮?
这是我正在寻找的(看看右下角的更多按钮)
解决方法
从
documentation page的jQuery无限滚动插件:
In 1.4 you can trigger the loading of the next page of content at
will. You’ll first unbind the default behavior. And then trigger the
next pull whenever you like.
// 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');
它应该解决你的问题.