首页 > Web开发 > 详细

Javascript Validation for email(正则表达式) 英文翻译

时间:2015-12-01 07:02:20      阅读:280      评论:0      收藏:0      [点我收藏+]
Try testing the following form with valid and invalid email addresses. The
code uses javascript to match the users input with a regular expression.
函数代码:
复制代码 代码如下:

function validate(form_id,email) {
var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
var address = document.forms[form_id].elements[email].value;
if(reg.test(address) == false) {
alert(‘Invalid Email Address‘);
return false;
}
}

In the forms ‘onsubmit‘ code call javascript:return validate(‘form_id‘,‘email_field_id‘)
使用方法:
复制代码 代码如下:

<form id="form_id" method="post" action="action.php" onsubmit="javascript:return validate(‘form_id‘,‘email‘);">
<input type="text" id="email" name="email" />
<input type="submit" value="Submit" />
</form>

You should not rely purely on client side validation on your website / web application, if the user has javascript disabled this will not work. Always validate on the server.
from: http://www.white-hat-web-design.co.uk/blog/javascript-validation/

Javascript Validation for email(正则表达式) 英文翻译

原文:http://www.jb51.net/article/28447.htm

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!