Convert json.stringify (obj) and Json.parse (string) between JSON object and string

Source: Internet
Author: User
Tags string to json

advanced browsers such as FIREFOX,CHROME,OPERA,SAFARI,IE9,IE8 can directly use the stringify () and Parse () methods of JSON objects.

Json.stringify (obj) converts the JSON to a string. Json.parse (String) to convert the string to JSON format;

var a={"name": "Tom", "Sex": "Male", "Age": "$"}; var atostr =// Result: {"name": "Tom", "Sex": "Male", "Age": " $"}

Result: string

var b= ' {' name ': ' Tom ', ' sex ': ' Male ', ' age ': ' "} '; var atoobj =// Result: Object {name: "Tom", Sex: "Male", Age: "$"}

Result: Object

IE8 (compatibility mode), IE7 and IE6 do not have JSON objects, but http://www.json.org/ provides a json.js, so IE8 (compatibility mode), IE7 and IE6 can support JSON objects as well as their stringify () and Parse () methods;

Now generally with Json2.js,: click here .

Adding on the page will solve the problem of not having JSON objects in the low version of IE.

<type= "Text/javascript"  src= "Js/json2.js"></  script>

Convert json.stringify (obj) and Json.parse (string) between JSON object and string

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.