在之前的项目中,json格式的数据直接通过key来获取value,这次要循环读出json中的值。
参考了些资料,找到如下的方法:
var json = { "name":"名字", "age":"22", "company":"lenovo" }; for(var i in json){ alert(i + " " + json[i]); }
CopyRight © 2010-2021 脚本学堂 Jb200.com , All Rights Reserved.