Checking for a valid email address
本问题已经有最佳答案,请猛点这里访问。
Possible Duplicate:
Validate email address in Javascript?
Validate email with jQuery
目前我在我建立的联系表格中使用它来检查电子邮件字段是否留空
1 2 3 4 5 6 | var email = $("input#email").val(); if (email =="") { $("label#email_error").show(); $("input#email").focus(); return false; } |
如何检查电子邮件输入字段是否包含 @ 字符?
将
-
该字符串包含
@ 。 -
@ 不是第一个字符。 - 字符串不为空。
示例:
1 2 3 4 5 6 | var email = $("input#email").val(); if (!(email.indexOf('@') > 0)) { $("label#email_error").show(); $("input#email").focus(); return false; } |
How can I run a check that the email input field contains an @ character?
足够简单:
1 2 3 4 | if(email.indexOf('@') == -1) { /* no @ in the string */ } |
但是,这不足以验证电子邮件地址。请参阅上一个问题:在 JavaScript 中验证电子邮件地址?