无限滚动启动功能无效

时间:2014-11-14 10:09:05

标签: javascript jquery infinite-scroll

当无限滚动开始加载新项目时,我一直试图触发一些事件但是,它会触发事件但不会加载新项目(完全停止响应)但是当开始选项时它可以正常工作被删除了。

他们有一个名为已完成的内置函数,只要无限滚动完成加载新项目就会触发。

docs

docs2

$container.infinitescroll({
    loading: {
        finished: function() {
            alert("finished"); //works fine
        },
        start: function() {
          alert("started"); //triggers but breaks everything else.
        }
    },
    navSelector: "#next:last",
    nextSelector: "#next:last",
    itemSelector: ".post-item",
    debug: true,
    dataType: 'html',
    maxPage: 10,
    bufferPx: 300
}, function(newElements, data, url){
    //done

});

0 个答案:

没有答案