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

转自:http://blog.csdn.net/icexuan007/article/details/8303949

上一篇:Blender基础操作


下一篇:使用R语言将微信记录制作成词云(简洁)--情人节奥义