Home  >  Article  >  Web Front-end  >  JS code to verify whether the email format is correct_javascript skills

JS code to verify whether the email format is correct_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:10:241384browse
Copy code The code is as follows:

/*
*Verify whether the email format is correct
* Parameter strEmail, the email address that needs to be verified
*/
function chkEmail(strEmail) {
if (!/^w ([- .]w )*@w ([-.]w )*.w ([-.]w )*$/.test(strEmail)) {
return false;
}
else {
return true;
}
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn