码迷,mamicode.com
首页 > Web开发 > 详细

js判断undefined类型

时间:2015-08-28 13:33:52      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:js undefined   js   

最近写js的时候遇到undefined的情况,按照网上搜的结果大家一致都在用下面的方法来判断

if (typeof(reValue) == "undefined") {

   alert("undefined");
}  

但是这种方法在调试的时候并不管用。调试发现 typeof(reValue)得到的结果是string(在firefox和chrom中使用firebug调试),所以有必要在原来的基础上再加上一个判断

正确的做法是:

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

这样做就可以避免typeof(reValue)得倒结果为string的情况了。

版权声明:本文为博主原创文章,未经博主允许不得转载。

js判断undefined类型

标签:js undefined   js   

原文地址:http://blog.csdn.net/shouqiangwei/article/details/48047607

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!