/*
*验证邮箱格式是否正确
*参数strEmail,需要验证的邮箱
*/
function chkEmail(strEmail) {
if (!/^\\w+([-+.]\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*$/.test(strEmail)) {
return false;
}
else {
return true;
}
}
本文地址:https://www.stayed.cn/item/23100
转载请注明出处。
本站部分内容来源于网络,如侵犯到您的权益,请 联系我