数値かどうか調べる


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

ポイント data = txt.match(/[^0-9]/g);
説  明 数値かどうかを調べるには、数値以外かどうかを調べることで判別することができます。正規表現では[^0-9]と記述しグローバルマッチで処理します。
サンプル <html> <head> <title>数値かどうか調べる</title> <script language="JavaScript"><!-- function check() { txt = document.myFORM.num.value; data = txt.match(/[^0-9]/g); if (data) alert("数値以外が含まれています"); } // --></script> </head> <body> <form name="myFORM"> 数値:<input type="text" name="num"> <input type="button" value="チェック" onClick="check()"> </form> </body> </html>
補足説明 なし

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

写真素材 PIXTA