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