jQuery里报的错:$.each(returnData,function(i,e){}) i = undefined e = readystatechange 没有定义i
展开全部
的确是没定义i
$.each(returnData,function(i,e){
})
i = undefined
e = readystatechange
虽则看不出你代码实现什么样的效果
i如果在函数里就不用声明了,因i由参数传入,在函数外必需声明,否则错误“未定义”,好明显你以上代码就会这样错误。
函数内:
$.each(returnData,function(i,e){
i = undefined
e = readystatechange
});
函数外:
$.each(returnData,function(i,e){
})
//必需var i 声明变量
var i = undefined
var e = readystatechange
$.each(returnData,function(i,e){
})
i = undefined
e = readystatechange
虽则看不出你代码实现什么样的效果
i如果在函数里就不用声明了,因i由参数传入,在函数外必需声明,否则错误“未定义”,好明显你以上代码就会这样错误。
函数内:
$.each(returnData,function(i,e){
i = undefined
e = readystatechange
});
函数外:
$.each(returnData,function(i,e){
})
//必需var i 声明变量
var i = undefined
var e = readystatechange
追问
前面有这样的代码:String result=gson.toJson(list); printwriter out=response.getwriter(); out.write(result); 按理是有定义i的啊
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询