0

我正在尝试创建一个表单来验证是否输入了电子邮件地址。不一定要检查其有效性,但基本上是 sakjfsfksldjf@email.com。我想知道如何在 PURE JavaScript 而没有 RegEx 中进行操作。

    <!DOCTYPE html>

    <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta charset="utf-8" />
        <title>Test File</title>
    </head>
        <script>
            function submitForms() {
                email_format = document.getElementById('email_input')       // want to return T or F
                if (email_format) {
                    //print email successful
                }
                else {
                   //print error message
                }         
        </script>

    <body>

        <form>
            Email:            
            <input type ="email" id ="email_input" />
        </form>

        <button type = "button" onclick = "submitForms;"> Submit All!
        </button>
    </body>
    </html>
4

3 回答 3

1

这已经回答了很多。这是一个很好的功能,可以测试有效的电子邮件格式,阅读起来不太难,也不太严格。

function IsEmail(email) {
    var regex = /^([a-zA-Z0-9_.+-])+\@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/;
    return regex.test(email);
}

Per:使用 jQuery 进行电子邮件验证

于 2013-08-29T17:16:26.930 回答
1

这是以前回答的正则表达式答案。这是相当不错。

function validateEmail(email) { 
    var re = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\
".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA
-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
    return re.test(email);
} 

学分:https ://stackoverflow.com/a/46181/295264

但是,验证电子邮件地址的唯一方法是发送确认电子邮件并进行回复。

于 2013-08-29T17:17:17.793 回答
1

我想你正在寻找这个:

 function IsEmail(email) {
 var regex = /^([a-zA-Z0-9_.+-])+\@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/;
 return regex.test(email);
}

在这里找到:使用 jQuery 进行电子邮件验证

于 2013-08-29T17:17:32.910 回答