ie6、ie7下JSON.parse JSON未定义的解决方法

解决方法一:

var jsons = req.responseText;
var s;
if (typeof(JSON) == 'undefined') {
    s = eval("(" + jsons + ")");
} else {
    s = JSON.parse(jsons);
}

 

解决方法二:

调用的页面里引用json2.js即可解决问题(推荐方法二)。

即:<script type="text/javascript" src="js/json2.js"></script>

 json2.js的下载地址:http://download.csdn.net/detail/icexuan007/4896080

 

你可能感兴趣的:(ie6、ie7下JSON.parse JSON未定义的解决方法)