这是我的 json 对象,我想在没有像 [0]、[1] 之类的数组顺序的情况下提醒它。
var jsononj = {
"objnew" :
[{testarry: "thi is my demo text" },
{testarry2: "thi is my demo text2" }
] };
}
var newtest = jsononj.objnew[0].testarry;
alert(newtest);
我想在没有 [0] 的情况下发出警报。我如何做到这一点