var isJson = function(obj){
    var isjson = typeof(obj) == "object" && Object.prototype.toString.call(obj).toLowerCase() == "[object object]" && !obj.length;
    return isjson;
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-10-02
  • 2021-05-27
  • 2022-12-23
  • 2022-12-23
  • 2022-02-18
猜你喜欢
  • 2021-10-21
  • 2022-12-23
  • 2021-11-17
  • 2022-12-23
  • 2021-07-29
  • 2022-02-11
  • 2021-11-30
相关资源
相似解决方案