jsonDecode替代eval解析JSON数据
2011年05月11日 | javascript, 前端技术
0条评论 |
[code lang=”js” highlight=””]
function jsonDecode(data) {
return new Function(“return ” + data + “;”)();
}
var jsonObj = jsonDecode(‘{ name: “名字”, age: 24 }’); //调用方法
alert(jsonObj.name + “:” + jsonObj.age);
[/code]