javascript用typeof方法判断undefined类型

分类:Javascript| 发布:佚名| 查看: | 发表时间:2014/7/18

js判断undefined类型

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

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

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

 typeof 返回的是字符串,有六种可能:"number"、"string"、"boolean"、"object"、"function"、"undefined"

365据说看到好文章不转的人,服务器容易宕机
原创文章如转载,请注明:转载自郑州网建-前端开发 http://camnpr.com/
本文链接:http://camnpr.com/javascript/1486.html