经测试代码如下:
/**
* 验证邮箱格式是否正确
* 参数strEmail,需要验证的邮箱
*
* @param
* @arrange (512.笔记) jb51.cc
**/
function chkEmail(strEmail) {
if (!/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/.test(strEmail)) {
return false;
}
else {
return true;
}
}
原文链接:https://www.f2er.com/js/527732.html