在开发中,会遇上一些关于邮箱验证等验证信息,一下是js的邮箱验证:
function checkEmail(email){
if(!/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/).test(email){
return true;
}else{
return false
}