JQuery - $.parseJSON() (how to read JSON by Jquery)

摘要:JQuery - $.parseJSON() (how to read JSON by Jquery)

Record how to use it on here

 
var obj = jQuery.parseJSON( '{ "name": "John" }' );

alert( obj.name === "John" );