テキストフィールドに空欄があったら警告する


動作ブラウザ 【 IE:3.0  NN:2.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 - - - - - - - - - - -

ポイント txt = document.myFORM.myTEXT.value; if (txt == "") alert("入力されていません");
説  明 テキストフィールドの内容は「document.フォーム名.エレメント名.value」で読み出すことが出来ます。読み出した内容が空欄かどうかif命令を使って調べます。
サンプル <html> <head> <title>テキストフィールドに空欄があったら警告する</title> <script Language="JavaScript"><!-- function check() { txt = document.myFORM.myTEXT.value; if (txt == "") alert("入力されていません"); } // --></script> </head> <body> <form name="myFORM"> 名前:<input type="text" name="myTEXT"> <input type="button" onClick="check()" value="チェック"> </form> </body> </html>
補足説明 Mac+NN3、4.xではフィールド内の文字が全部日本語の場合はnullとなり、正しく読み出すことができません。

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

写真素材 PIXTA