我在这样的阵列中增加价值观:
ansArray = {question:id[count], answer: a };
and和ole显示出这样的结果:
(
{
answer = a;
question=1;
},
{
answer =d;
question=2;
}
//......
//.......
)
我曾这样说:
for (i=0;i<20;i++){
alert(ansArray[i].answer); //This comes with undefined error
alert(ansArray[i].question); //undefined
}
出现这种错误,没有界定;
但如果不使用变数,而是使用一定数字,则该信息显示正确的价值:
alert(ansArray[0].answer); //shows correct value
alert(ansArray[1].question); //shows correct value
为什么没有漏洞显示错误? 我在这里失踪了什么?
感谢您的帮助。