[code lang=”js” highlight=””]
function jsonDecode(data) {
return new Function(“return ” + data + “;”)();
}
var jsonObj = jsonDecode(‘{ name: “名字”, age: 24 }’); //调用方法
alert(jsonObj.name + “:” + jsonObj.age);
[/code]