1

每当我附加到我的同位素时,都会出现此错误。更改附加到 addItems ,现在它似乎工作得更好,但仍然随机抛出此错误。

未捕获的类型错误:对象没有方法“过滤器”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);
});
4

0 回答 0