同位素:未捕获的TypeError:在append / addItems上,Object没有方法'filter'

时间:2013-06-14 17:02:42

标签: jquery filter append jquery-isotope

每当我添加到同位素时,都会出现此错误。更改为附加到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);
});

0 个答案:

没有答案