使用typeof方法判断undefined类型

2019-12-21,,,

有关js判断undefined类型,使用typeof方法,typeof 返回的是字符串,其中就有一个是undefined。

js判断undefined类型

if (reValue== undefined)
{
alert("undefined");
}

发现判断不出来,最后查了下资料要用typeof方法:

if (typeof(reValue) == "undefined")
{ 
alert("undefined");
}

typeof 返回字符串,有六种可能:"number"、"string"、"boolean"、"object"、"function"、"undefined"。
在使用时一定要注意。

您可能感兴趣的文章:

  • js中判断变量类型函数typeof的用法总结
  • js中typeof的用法汇总
  • js中判断对象是否为空的三种实现方法
  • js用typeof方法判断undefined类型
  • js判断是否为空和typeof的用法(详解)

《使用typeof方法判断undefined类型.doc》

下载本文的Word格式文档,以方便收藏与打印。