使用所有现代浏览器(包括IE 8)中可用的快速可靠的方法来替换jQuery的 $.parseJSON
$.parseJSON
var json = '{ "foo": true, "bar": 1 }'; var obj = JSON.parse(json); console.log(obj);