码迷,mamicode.com
首页 > Web开发 > 详细

Jq 操作json

时间:2015-07-17 11:54:37      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

 //1.比较古老的方法:
function strToJson(str){
     var json = eval(‘(‘ + str + ‘)‘);
     return json;
}
//3.IE67不支持的json对象方法:
function strToJson(str){
     return JSON.parse(str);
}
//2.比较常用的方法:
function strToJson(str){
     return (new Function("return " + str))();
}
//4.jQuery提供的方法:
parseJSON: function( data ) {
     if ( typeof data !== "string" || !data ) {
          return null;
     }
  data = jQuery.trim( data );
  if ( /^[\],:{}\s]*$/.test(data.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, "@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, "]").replace(/(?:^|:|,)(?:\s*\[)+/g, "")) ) {
          return window.JSON && window.JSON.parse ? window.JSON.parse( data ) :(new Function("return " + data))();
  } else {
       jQuery.error( "Invalid JSON: " + data );
  }
}

Jq 操作json

标签:

原文地址:http://www.cnblogs.com/baibjq/p/4653826.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!