我有这个 html 代码:
<p>
<label for="email">E-mail</label>
<input id="email" name="email" placeholder="ex: email@gmail.com"/>
</p>
<p>
<label for="email_alt">E-mail Alternativo</label>
<input id="email_alt" name="email_alt" />
</p>
我想验证电子邮件是否在运行时间匹配。
我在stackoverflow的一篇文章中找到了下面的代码,我知道#author_email和#author_confirm_email是输入的ID。据我所知 .blur 是在运行时触发警报。但我不理解触发该功能的“.email”。考虑到我拥有的代码,我可以在那里使用什么?
$(".email").blur(function(){
//check to two here.
if ($("#author_email").val() != $("#author_confirm_email").val())
{
//do something
}
});