json对象

var jsonStr = " { a:1,b:2,c:3 }";
var jsonObj = eval(jsonStr);
alert(jsonObj.a) 
原文地址:https://www.cnblogs.com/zzx849918265/p/9441596.html