首页 > 代码库 > JS 正则表达式
JS 正则表达式
Email验证
<html><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><title>验证Email是否正确</title><script language="javascript">function checkemail(str){ //在JavaScript中,正则表达式只能使用"/"开头和结束,不能使用双引号var Expression=/\w+([-+.‘]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/; var objExp=new RegExp(Expression);if(objExp.test(str)==true){ return true;}else{ return false;}}function check(myform){ if(myform.email.valuehttp://www.mamicode.com/==""){ alert("请输入Email地址!");myform.email.focus();return; } if(!checkemail(myform.email.value)){ alert("您输入Email地址不正确!");myform.email.focus();return; } myform.submit();}</script></head><body><form name="form1" method="post" action=""><table width="100%" height="276" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="16%" height="36" align="center">留言人:</td> <td width="84%"> <input name="author" type="text" id="author" size="30" title="留言人"></td> </tr> <tr> <td height="38" align="center">Email:</td> <td><input name="email" type="text" id="email" size="72" title="Email地址"> * </td> </tr> <tr> <td height="42" align="center"> </td> <td><input name="Submit" type="button" class="btn_grey" value="http://www.mamicode.com/保存" onClick="check(form1)"> <input name="Submit2" type="reset" class="btn_grey" value="http://www.mamicode.com/重置"> </td> </tr> </table></form> </body></html>
JS 正则表达式
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。