沫沫金:针对JS里面undefined的判断方法

 当页面开发中遇到返回值是undefined的时候,好多人想当然的认为下面这样
 


  1. if (reValue== undefined){ 
  2. alert("undefined"); 

使用后,就知道这样没用。解决办法就是:使用typeof
方法:


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


typeof 返回的是字符串,有六种可能:

"number"、"string"、"boolean"、"object"、"function"、"undefined"

 

使用typeof方法后就没问题了,呵呵,祝大家开发愉快,和沫沫金一样遇到好东西给大家分享

 

沫沫金:针对JS里面undefined的判断方法

 

上一篇:沫沫金::如果使用了ireport的crosstab组建并且选择了其他样式报错了怎么办,看这里


下一篇:沫沫金--Map有序