<html xmlns = "http://www.w3.org/1999/xhtml"> <head> <title> </title> <script type = "text/javascript"> // js JS JS判断if(x == null){alert( "x is null"); } if(typeof(x)== "undefined"){alert( "x is undefined"); } //このフォームは、変数の初期化を判断するために推奨されます(!x){alert( "not x"); // if(x){}意味:変数が初期化されている(初期化されたことは変数が割り当てられていることを意味します)、または変数が空でないか、変数が未定義ではない} </script> </head> <body> <