$('#content').infinitescroll({
binder: $(window),
debug: true,
itemSelector : ".post",
navSelector : "#pagination",
nextSelector : "#next-page"
},function(arrayOfNewElems){
});
基本上,我想显示我的Tumblr帖子的号码。我做了不同的尝试,但每次加载新内容后索引编号从0开始重新开始。如何从前面加载的帖子中继续编号。
我应该在
中调用什么样的函数function(arrayOfNewElems){
});
这是使用
的插件答案 0 :(得分:0)
为什么你需要获得帖子的索引号?我认为这也可以起作用
答案 1 :(得分:0)
只是做:
var totalPosts = null;
$.ajax({
url: "http://[BLOG NAME HERE].tumblr.com/api/read/json",
dataType: 'jsonp',
success: function(results){
totalPosts = results['posts-total'];
alert(totalPosts);
}
});
需要jQuery但可以在加载文档之前运行。