変数が存在するか調べる


動作ブラウザ 【 IE:3.0  NN:3.0
Internet Explorer Netscape Navigator DreamPassport iCab
3.0x 4.0x 4.5 5.0x 5.5 2.0x 3.0x 4.0x 4.x 6.0 2 3 2.x
Windows - × - -
Macintosh - × - -
UNIX - - - - - × - - -
Dreamcast - - - - - - - - - - -

ポイント if (typeof(変数名) == "undefined") { 未定義時の処理 } else { 定義済み時の処理 }
説  明 変数が存在するかどうかはtypeOf()を使います。戻り値がundefinedであれば未定義であり、そうでなければ定義済みであることを示します。
サンプル <html> <head> <title>変数が存在するか調べる</title> </head> <body> <script language="JavaScript"><!-- myVar = "KF"; document.write("<br>myVar : "); if (typeof(myVar) == "undefined") document.write("未定義"); else document.write("定義済み"); document.write("<br>myBar : "); if (typeof(myBar) == "undefined") document.write("未定義"); else document.write("定義済み"); // --></script> </body> </html>
補足説明 なし

■サンプルスクリプトを実行する >>実行
■各ブラウザでの動作結果を見る >>View!

写真素材 PIXTA