欢迎各位兄弟 发布技术文章
这里的技术是共享的
投稿:whsnow 字体:[增加 减小] 类型:转载 时间:2014-09-09 我要评论
有关js判断undefined类型,使用typeof方法,typeof 返回的是字符串,其中就有一个是undefined。
js判断undefined类型
if
(reValue== undefined)
{
alert(
"undefined"
);
}
发现判断不出来,最后查了下资料要用typeof方法:
(
typeof
(reValue) ==
)
typeof 返回字符串,有六种可能:"number"、"string"、"boolean"、"object"、"function"、"undefined"。在使用时一定要注意。
来自 http://www.jb51.net/article/54937.htm