我有一个这样的 JSON 对象:
var saveChamp = {
"champ1": {"type": "radio", "size": 4, "null": null},
"champ2": {"type": 3, "size": 4, "null": null}
};
alert(saveChamp.champ1.type);
在这个例子中,alert 显示“radio”,这是正常的。
如果我不知道 champ1 或 champ2 来检索“type”或“size”怎么办?我动态创建我的 json,所以我不知道我的对象的所有名称。
谢谢 !