JSON 教程
JSON 数组
JSON 对象中数组可以包含另外一个数组,或者另外一个 JSON 对象
源代码:
点击运行 »
myObj = { "name": "网站", "num": 3, "sites": [{ "name": "Google", "info": ["Android", "Google 搜索", "Google 翻译"] }, { "name": "Mifengjc", "info": ["蜜蜂教程", "菜鸟工具", "菜鸟微信"] }, { "name": "Taobao", "info": ["淘宝", "网购"] } ] }
运行结果:
点击运行 »