JavaScript 电子邮件验证
我想在我的项目中应用 javascript 电子邮件验证,所以请有人建议我确切的代码,因为我只想将它仅应用于正则表达式,并且我不想为其添加任何插件。是否可以在源文件中编写一些代码并应用于电子邮件字段。
提前致谢
I want to apply javascript email validation in my project so please some suggest me the exact code for that because i just want to apply it only for regular expression and i don't want to add any plug in for it. is it possible to write some code in source file and apply to email field.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以添加正则表达式验证器来验证您的电子邮件。
或者如果您想检查来自 javascript 的电子邮件。检查SO 帖子
you can add a regular expression validator to validate you email.
or if you want to check email from from javascript . check the SO post
您可以使用正则表达式 (/^([\w.-]+)@([\w-]+)((.(\w){2,3})+)$/i) 来验证电子邮件地址。
var emailRegex = new RegExp(/^([\w.-]+)@([\w-]+)((.(\w){2,3})+)$/i);
在此处获取示例代码:http://www.codegateway。 com/2012/03/regex-for-email-validation-javascript.html
另请参阅如何使用 RegularExpressionValidator 验证电子邮件地址的示例
http://www.codegateway.com/2012/03/validate-email -format.html
You can use regular expression (/^([\w.-]+)@([\w-]+)((.(\w){2,3})+)$/i) to validate email address.
var emailRegex = new RegExp(/^([\w.-]+)@([\w-]+)((.(\w){2,3})+)$/i);
Get example code here: http://www.codegateway.com/2012/03/regex-for-email-validation-javascript.html
Also see example how to validate email address using RegularExpressionValidator
http://www.codegateway.com/2012/03/validate-email-format.html