如何修复Uncaught TypeError:数据不是函数?

时间:2017-08-11 12:18:20

标签: javascript

哪里出错?控制台说" 未捕获的TypeError:数据不是函数"

data = '';
x = 0;

$('._post .post .page_block .all .own').each(function(){

    if(x < 5){
       data += 'postid'+i+'='+$('.page_block', 
       this).text().replace(/^\s+|\s+$/gm,'')+'&';
    }
    x++;

});

谢谢!

0 个答案:

没有答案