2017-11-21 07:20:13
var isJson = function(obj){
var isjson = typeof(obj) == "object" && Object.prototype.toString.call(obj).toLowerCase() == "[object object]" && !obj.length
return isjson;
}
t = isJson(obj);
alert(t);
2017-11-21 07:20:13
var isJson = function(obj){
var isjson = typeof(obj) == "object" && Object.prototype.toString.call(obj).toLowerCase() == "[object object]" && !obj.length
return isjson;
}
t = isJson(obj);
alert(t);