json字符串转json对象:jQuery.parseJSON(xxx);

json对象转json字符串:JSON.stringify(xxx);

 
IE中可能对unicode使用“\uXXXX”格式来编码,可以使用如下来解码:
function unicode2Char(str) {
return (str.replace(/\\/g, "%"));
}