1.将json字符串反序列化为对象 2.获取对象的属性值 var str = {'id':11,'name':'zs'}; var json = eval("(" + str + ")"); console.log(json.name);//结果为zs