jQuery中json对象与json字符串互换
json字符串转json对象:jQuery.parseJSON(jsonStr);
json对象转json字符串:JSON.stringify(jsonObj);
IE中可能对unicode使用“\uXXXX”格式来编码,可以使用如下来解码:
function unicode2Char(str) { return (str.replace(/\\/g, "%")); }
判断是不是对象 var obj; //... if(typeof obj=="object") alert("是对象"); 根据字符串判断 var str="obj";//obj是一个对象的变量名 if(typeof window[str]=="object") alert("是对象");