检测对象是否是json 发表于 2020-06-02 检测一个对象是否是一个对象的方法: 123if(typeof(obj) == "object" && Object.prototype.toString.call(obj).toLowerCase() == "[object object]" && !obj.length){ alert('是JSON对象');} ------ 本文结束------