//if HTML5 input email input is not supported
if(type == email ){
if(!Modernizr.inputtypes.email){
var emailRegEx = /^([a-zA-Z0-9_.-])+@([a-zA-Z0-9-])+.+([a-zA-Z0-9]{2,4})+$/;
if( !emailRegEx.test(value) ){
this.focus();
formok = false;
errors.push(errorMessages.email + nameUC);
return false;
}
}
}
这是我检查电子邮件格式是否正确时的javascript regex。 但是,当我自己尝试时,就没有任何错误。 它没有检查,也没有检查结果。 我做了什么错误?