在开发中,会遇上一些关于邮箱验证等验证信息,一下是js的邮箱验证:
function checkEmail(email){
if(!/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/).test(email){
return true;
}else{
return false
}
}
本文共 279 字,大约阅读时间需要 1 分钟。
在开发中,会遇上一些关于邮箱验证等验证信息,一下是js的邮箱验证:
function checkEmail(email){
if(!/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/).test(email){
return true;
}else{
return false
}
}
转载于:https://www.cnblogs.com/suriski/p/4909025.html