我需要像符文['red'] [0] ['test']
这样的3D数组我怎么做?
var runes = {}
runes['red'] = [
'test': ['loh']
]
runes['blue'] = {}
runes['yellow'] = {}
提前致谢。
答案 0 :(得分:2)
所以你想要一个包含数组的对象,里面有对象吗?这看起来像这样:
runes["red"] = [
{test: "loh"},
{anotherTest: "anotherLoh"}
]
答案 1 :(得分:2)
var runes = {}; // Object
runes.red = [ // containing Array of Objects
{'test': 'loh'}, // 0
{'test': 'blah'}, // 1
{property1: "value", property2: "value"} // 2...
];
alert( runes.red[0].test ); // loh