首页 > Web开发 > 详细

Convert JS object to JSON string

时间:2014-08-12 13:08:24      阅读:575      评论:0      收藏:0      [点我收藏+]

Modern browsers (IE8, FF3, Chrome etc.) have native JSON support built in (Same API as with JSON2).

So as long you‘re not dealing with IE6/7 you can do it just as easily as that:

var j={"name":"binchen"};
JSON.stringify(j); // ‘{"name":"binchen"}‘

Convert JS object to JSON string,布布扣,bubuko.com

Convert JS object to JSON string

原文:http://www.cnblogs.com/shgq/p/3906906.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!