【发布时间】:2016-01-04 09:23:49
【问题描述】:
这是示例 JSON 对象。 访问第二条记录的列表数组的方法是什么?
var myPlants = [
{
type: "flowers",
list: [
"rose",
"tulip",
"dandelion"
]
},
{
type: "trees",
list: [
"fir",
"pine",
"birch"
]
}
];
【问题讨论】:
标签: javascript arrays json object