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

js json转字符串

时间:2015-05-19 18:49:49      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

function obj2str(o){
       var r = [];
       if(typeof o == "string" || o == null) {
         return o;
       }
       if(typeof o == "object"){
         if(!o.sort){
           r[0]="{"
           for(var i in o){
             r[r.length]=i;
             r[r.length]=":";
             r[r.length]=obj2str(o[i]);
             r[r.length]=",";
           }
           r[r.length-1]="}"
         }else{
           r[0]="["
           for(var i =0;i<o.length;i++){
             r[r.length]=obj2str(o[i]);
             r[r.length]=",";
           }
           r[r.length-1]="]"
         }
         return r.join("");
       }
       return o.toString();
    }

 

js json转字符串

标签:

原文地址:http://www.cnblogs.com/hzm112567/p/4515162.html

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