当电子邮件地址无效时,它在 IF 上工作正常。然后,当我去输入一封有效的电子邮件时,ELSE 应该触发并清除它不是的错误 div。
<SCRIPT>
$(document).ready(function(){
$("#email").blur(function (){
var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
if (!emailReg.test(email.value)) {
$("#theErrorDivID").html('Email Address Is Not Valid!');
$('#email').css("background-color","red");
$('#email').focus();
}
else {
$("#theErrorDivID").html = "";
}
})
});
</SCRIPT>