4

Paul Irish には plugininfiniteScroll があります。私は以前にこれを使用しましたが、この場合は機能しません。

問題は、「Show When」が否定的であることです。ご覧ください。

ここに画像の説明を入力

私はこれを機能させるためにハックをチェックしようとしましたが、何かで遊んでbufferPXbufferPxました。

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 に答える