判断一个对象是否是JSON对象

if(typeof(obj) == "object" && Object.prototype.toString.call(obj).toLowerCase() == "[object object]" && !obj.length){

alert('是JSON对象');

}

你可能感兴趣的:(javascript)