Paul Irish有一个插件infiniteScroll,我以前用过这个,在这种情况下它对我不起作用,
问题是,“Show When”的事情是否定的,请看看:
我尝试检查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){
});
路径是正确的,我已经测试过了。
答案 0 :(得分:2)
pathParse: function(path,page){
return $(this.nextSelector).attr("href");
}
到
path: function(path,page){
return $(this.nextSelector).attr("href");
}