欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

使用typeof方法判断undefined类型 有大用

使用typeof方法判断undefined类型

投稿:whsnow 字体:[增加 减小] 类型:转载 时间:2014-09-09 我要评论

使用typeof方法,typeof 返回的是字符串,其中就有一个是undefined,下面是示例代码,大家可以看看
 

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

js判断undefined类型

1
2
3
4
if (reValue== undefined)
{
alert("undefined");
}

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

1
2
3
4
if (typeof(reValue) == "undefined")
{
alert("undefined");
}

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


来自 http://www.jb51.net/article/54937.htm

普通分类: