JavaScript中的电子邮件验证
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript中的电子邮件验证相关的知识,希望对你有一定的参考价值。
One of the important things about user input is to verify that the user has supplied the email that you have requested. The function below allows you to verify email address with easy.
function check_email(email){ var reg = /^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/; if(reg.test(email)){ return true; }else{ return false; } } </script> <input type="text" id="email"> <button onclick="alert(check_email(document.getElementById('email').value))">Validate</button>
以上是关于JavaScript中的电子邮件验证的主要内容,如果未能解决你的问题,请参考以下文章
Javascript - 使用 HTML 片段通过电子邮件发送 JSON 输出