Convert JS object to JSON string

时间:2014-08-12 13:08:24   收藏:0   阅读:217

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

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!