每当我添加到同位素时,都会出现此错误。更改为附加到addItems,它现在似乎工作得更好但仍然随机抛出此错误。
未捕获TypeError:对象没有方法'filter'jquery.isotope.min.js:13
$.get('feedAJAX.php?from='+ajaxFrom, function (data) {
try{var $newItems = $(data);}catch(err){var $newItems = '';}
try{
$('#container').append( $newItems ).isotope( 'addItems', $newItems );
} catch(err) {
// just in case there is a time delay in loading new items - retry again
setTimeout(function(){
resetIso();
$('#container').append( $newItems ).isotope( 'addItems', $newItems);
},3000);
}
resetIso();
setTimeout(function(){ resetIso(); },1000);
});