我正在使用Infinite AJAX Scroll:https://github.com/webcreate/Infinite-Ajax-Scroll
用户可以按名称对结果进行排序或过滤结果。但是,当我这样做时,我必须更新导航链接。
该插件使用(例如):
启动jQuery.ias({
container : ".listing",
item : ".post",
pagination : "#content .navigation",
next : ".next-posts a",
loader : "images/loader.gif"
});
如何在AJAX调用后重新初始化插件以获取新的导航链接以使用此插件?
答案 0 :(得分:0)
完成ajax调用后,您只需再次调用它:
$.ajax({
url: "yoururl."
}).done(function() {
jQuery.ias({
container : ".listing",
item : ".post",
pagination : "#content .navigation",
next : ".next-posts a",
loader : "images/loader.gif"
});
});