Home >Web Front-end >JS Tutorial >js creates array to json function_javascript skills

js creates array to json function_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:20:07997browse

The code is very simple, so I won’t go into too much nonsense here, just give it to you:

Copy code The code is as follows:

function arrayToJson(o) {
         var r = [];
if (typeof o == "string") return """ o.replace(/(['"\])/g, "\$1").replace(/(n) /g, "\n").replace(/(r)/g, "\r").replace(/(t)/g, "\t") """;
If (typeof o == "object") {
If (!o.sort) {
for (var i in o)
r.push(i ":" arrayToJson(o[i]));
if (!!document.all && !/^n?functions*toString()s*{n?s*[native code]n?s*}n?s*$/.test(o.toString)) {
                    r.push("toString:" o.toString.toString());
                }
               r = "{" r.join() "}";
              } else {
for (var i = 0; i < o.length; i ) {
                     r.push(arrayToJson(o[i]));
                }
               r = "[" r.join() "]";
            }
              return r;
}
          return o.toString();
}

Equivalent to JSON.stringify(array);

Simple usage:

Copy code The code is as follows:

var str2="Script Home, www.jb51.net, Script Download, Baidu, 456,456,456";
var arr1=str2.split(",");
alert(arrayToJson(arr1));
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn