使用JavaScript对用户输入的内容做邮箱验证的方法是什么?今天小编为大家简单分享一段代码,希望能够帮助到大家。
<head>
<title>title
邮箱地址:<inputtype=”text“value=””id=”email“/>*<br/>–>
请您输入邮箱地址:
//如果输入的是邮箱,那么背景颜色为绿色,否则为红色
//获取文本框,注册失去焦点的事件
document.getElementById(“email”).onblur=function(){
//判断这个文本框中输入的是不是邮箱
varreg=/^[0-9a-zA-Z_.-]+[@][0-9a-zA-Z_.-]+([.][a-zA-Z]+){1,2}$/;
if(reg.test(this.value)){
this.style.backgroundColor=”green”;
}else{
this.style.backgroundColor=”red”;
}
};

博悦天下
