首页 > 技术文章 > jQuery 中json字符串与对象互转

GNblog 2017-06-15 10:31 原文

json字符串转json对象:jQuery.parseJSON(jsonStr);

json对象转json字符串:JSON.stringify(jsonObj);

推荐阅读