检测一个对象是否是一个对象的方法:
if(typeof(obj) == "object" && Object.prototype.toString.call(obj).toLowerCase() == "[object object]" && !obj.length){
alert('是JSON对象');
}
检测一个对象是否是一个对象的方法:
if(typeof(obj) == "object" && Object.prototype.toString.call(obj).toLowerCase() == "[object object]" && !obj.length){
alert('是JSON对象');
}