使用 typeof 来检测对象是否undefined

Posted 小鸣的网络日志

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用 typeof 来检测对象是否undefined相关的知识,希望对你有一定的参考价值。

需求

判断是否为undefined

解决

使用 typeof 来检测对象是否已定义:

if (typeof Obj !== "undefined" && Obj !== null) 

javascript 中, null 用于对象, undefined 用于变量,属性和方法。

对象只有被定义才有可能为 null,否则为 undefined。

参考:http://www.runoob.com/js/js-mistakes.html

以上是关于使用 typeof 来检测对象是否undefined的主要内容,如果未能解决你的问题,请参考以下文章

typeof, null, 和 undefined

JavaScript typeof, null, 和 undefined

用Object.prototype.toString()来检测对象的类型

javascript typeof 和 instanceof 的区别和联系

JS中null与undefined的区别

JS有几种方法判断变量的类型?