URLチェック


動作ブラウザ 【 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(/(http|ftp):\/\/.+/);
説  明 URLをチェックするにはhttp://で始まるかftp://で始まるかをチェックします。正規表現では「(http|ftp):\/\/.+」となります。
サンプル <html> <head> <title>URLチェック</title> <script language="JavaScript"><!-- function check() { txt = document.myFORM.URL.value; data = txt.match(/(http|ftp):\/\/.+/); if (!data) alert("URLが正しくありません"); } // --></script> </head> <body> URLチェック<br> <form name="myFORM"> URL:<input type="text" name="URL"> <input type="button" value="URLチェック" onClick="check()"> </form> </body> </html>
補足説明 正規表現を使わなくてもtxt.indexOf("http://",0)のようにして文字列が存在するかどうかを調べる方法もあります。

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

写真素材 PIXTA