JavaScript验证电子邮箱的函数

本文介绍一个JavaScript验证电子邮箱的函数,相当靠谱。

JavaScript验证电子邮箱的函数,源代码如下:

?

1

2

3

4

5

6

7

8

9

function checkEmail(text) {

if( text.match(/qq\.com$/) ) {

return -1;

}

if( ! text.match(/^\w+([._-]\w+)*@(\w+\.)+\w+$/) ) {

return false;

}

return true;

}

关于JavaScript验证电子邮箱的函数,本文就介绍这么多,希望对您有所帮助,谢谢!

本文链接:https://my.lmcjl.com/post/19790.html

展开阅读全文

4 评论

留下您的评论.