需求
判断是否为undefined
解决
使用 typeof 来检测对象是否已定义:
if (typeof Obj !== "undefined" && Obj !== null)
javascript 中, null 用于对象, undefined 用于变量,属性和方法。
对象只有被定义才有可能为 null,否则为 undefined。
Posted 小鸣的网络日志
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用 typeof 来检测对象是否undefined相关的知识,希望对你有一定的参考价值。
判断是否为undefined
使用 typeof 来检测对象是否已定义:
if (typeof Obj !== "undefined" && Obj !== null)
javascript 中, null 用于对象, undefined 用于变量,属性和方法。
对象只有被定义才有可能为 null,否则为 undefined。
以上是关于使用 typeof 来检测对象是否undefined的主要内容,如果未能解决你的问题,请参考以下文章
JavaScript typeof, null, 和 undefined
用Object.prototype.toString()来检测对象的类型