我需要验证电子邮件输入的值。我有这个代码,但它没有用。你能帮帮我吗?
HTML
data
JQUERY
<input type="text" name="mail" class="mail" />
<button class="validate">VALIDATE</button>
https://github.com/lolmaus/jquery.closestchild/blob/master/jquery.closestchild.js
答案 0 :(得分:2)
您可以使用jQuery验证库。它通过简单的实现方式为您进行了许多验证。如此 -
$( "#myform" ).validate({
rules: {
field: {
required: true,
email: true
}
}
});
文档源链接 - jQuery Validation
答案 1 :(得分:1)
mailVal不会等于setMail。您想检查匹配项:mailVal.test($(".mail").val())
而不是==
测试。