码迷,mamicode.com
首页 > 编程语言 > 详细

javascript平时小例子②(正则表达式验证邮箱)

时间:2016-11-10 11:58:07      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:.com   margin   png   错误   验证邮箱   display   test   tle   log   

技术分享

 

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>邮箱正则</title>
</head>
<body>
<input type="text" id="Txt1" />
<input type="button" value="提交" id="btn1" />
<script>
window.onload=function(){
var oTxt=document.getElementById("Txt1");
var oBtn=document.getElementById("btn1");
oBtn.onclick=function(){
var re=/^\w+@[0-9a-z]+\.[a-z]+$/i;
if(re.test(oTxt.value))
{
alert("恭喜你,答案正确");
}
else
{
alert("对不起验证错误");
}
}

}
</script>
</body>
</html>

javascript平时小例子②(正则表达式验证邮箱)

标签:.com   margin   png   错误   验证邮箱   display   test   tle   log   

原文地址:http://www.cnblogs.com/cxy66/p/6050142.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!