jsのnull&undefined判断

1939 ワード

nullまたはundefinedを判断する
------
判断ルール:
*x=nullまたはundefinedの場合、x=nullとx=undefinedはtrueに戻ります.
*typeof
      typeof(null値)=「Object」
      typeof(undefined値)=「undefined」
*x=nullの場合、x==undefinedはfalseに戻ります.

------
テクニック:
      * 0の値ではなく、存在するかどうかを判断します.
            if(!x){
                 //存在しません
            }
      * 数字があるかどうかを判断する
            if(!x&x!=0){
                 //数字が存在しない、またはNaN値
            }
      * null判断
            if(x==null&typeof(x)=="object"
      * undefined判断
            if(x==undefined){}
            または
            if(typeof(x)=「undefined」){}
      *
------
例:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script type="text/javascript">
function test() {
      var x1 = null;
      var x2 = undefined;
      var x3;
      var s = 
            "x1==null:"+(x1==null)+
            ",x1==undefined:"+(x1==undefined)+
            ",x2==null:"+(x2==null)+
            ",x2==undefined:"+(x2==undefined)+
            ",x3==undefined:"+(x3==undefined)+
            ",x3==null:"+(x3==null)+
            ",x1===undefined:"+(x1===undefined)+
            ",typeof(x1):"+(typeof(x1))+
            ",typeof(x2):"+(typeof(x2));
      
      alert(s);
}
</script>
</head>
<body>
<input type="button" value="test" onclick="test();" />
</body>
</html>
------