- ベストアンサー
Emailのチェック
Emailアドレスの書き込みチェックをjava scriptで行おうと思っています。 ..(ドットが2回続く)があったらエラーを出したいのです。 どなたか分かる方がいらっしゃいましたら、お願いします。
- みんなの回答 (3)
- 専門家の回答
質問者が選んだベストアンサー
正当なアドレスかというのはチェックできませんが かなりのチェックができるもので、実際に使っているものです function checkEmail(checkString) { var newstr = ""; var at = false; var dot = false; if (checkString == "") return ""; if (checkString.indexOf("@") != -1) at = true; else if (checkString.indexOf(".") != -1) dot = true; for (var i = 0; i < checkString.length; i++) { ch = checkString.substring(i, i + 1) if ((ch >= "A" && ch <= "Z") || (ch >= "a" && ch <= "z") || (ch == "@") || (ch == ".") || (ch == "_") || (ch == "-") || (ch >= "0" && ch <= "9")) { newstr += ch; if (ch == "@") at = true; if (ch == ".") dot = true; } } if ((at == true) && (dot == true)) return newstr; else { alert("メールアドレスではない文字が入力されています。"); return checkString; } }
その他の回答 (2)
- hequil
- ベストアンサー率65% (242/372)
strEmail = document.myForm.email; if( strEmail.indexOf('..') >= 0 ){ // エラー } こんな感じでしょうか?
お礼
ありがとうございます。勉強になりました。
indexOfでできませんか? if( form.elements.value.indexOf("..",0) != -1){ alert("エラーです"); } 構文は、 検索される文字列.indexOf("検索する文字列",検索開始位置) となります。 該当があればその位置を返し、なければ-1が返ります。
お礼
ありがとうございます。indexOfですね。 勉強になりました。
お礼
ありがとうございます。たくさんのチェックがなされていますね。 とても勉強になりました。