4

Paul Irish 有一个插件infiniteScroll,我以前用过这个,在这种情况下它对我不起作用,

问题是,“显示时间”是否定的,请看一下:

在此处输入图像描述

我尝试检查黑客以使其工作,我开始玩东西,当我触摸 时bufferPX,如果我尝试使用bufferPx2000 - 3000 或更大,我会收到此错误。

TypeError: I.join is not a function

ApplicationHelper.GroupViewMember.MainSection.find('> section.information > section.wall > section.wall_container')
    .infinitescroll({
        navSelector     : "section.navigation_wall",
        nextSelector    : "section.navigation_wall a.next:last",
        itemSelector    : 'section.wall_entry',
        dataType        : 'html',
        bufferPx        :  100,
        debug           :  true,
        pathParse: function(path,page){
            return $(this.nextSelector).attr("href");
        }
    }, function(newElements, data, url){

});

路径是正确的,我已经测试过了。

4

1 回答 1

2
pathParse: function(path,page){
    return $(this.nextSelector).attr("href");
}

path: function(path,page){
    return $(this.nextSelector).attr("href");
}
于 2013-01-25T22:11:31.807 回答