无限滚动保罗爱尔兰不工作

时间:2013-01-08 12:41:33

标签: jquery

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

问题是,“Show When”的事情是否定的,请看看:

enter image description here

我尝试检查hacks以使其工作,我开始玩游戏,当我触及bufferPX时,如果我尝试使用bufferPx 2000 - 3000或更大版本,我会收到此错误。< / p>

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){

});

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

1 个答案:

答案 0 :(得分:2)

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

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