Document
html部分
js部分
window.onload=function(){
var oTxt=document.getElementById('txt1');
var oBtn=document.getElementById('btn1');
oBtn.onclick=function(){
var re=/^\w@[a-z0-9]+\.[a-z]+$/i;
if(re.test(oTxt.value)){ //test 专门用来检测字符串是否复合要求 正确 返回true 错误返回false
alert('合法邮箱');
}
else{
alert('你丫写错了');
}
}
}