Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用无限滚动来获取新元素并扩展我的页面。当用户应用过滤器时,我想取消任何正在进行的提取。否则它们将加载到页面上并且与当前过滤器不匹配。
有没有办法做到这一点?
这就是我最终解决它的方式。
设置一个全局变量midFilter,并通过无限滚动回调函数删除所有返回的项目。
midFilter
$('#item-grid').infinitescroll(settings, function (arrayOfNewElems) { if (midFilter) { $(arrayOfNewElems).each(function () { $(this).remove(); }); } });