Jestem nowy w JavaScript i znaleźć ten kod JavaScript w Internecie, który sprawdza poprawność podanego maila (nie ma problemu z kodem) -zrozumienie walidacji e-mail przy użyciu JavaScript
<html>
<h2>Email Validation</h2>
<script language = "Javascript">
function checkEmail(emailId) {
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(emailId)){
document.write("You have entered valid email.");
return true;
}
return false;
}
function ValidateEmail(){
var emailID=document.form.email;
if ((emailID.value==null)||(emailID.value=="")){
alert("Please Enter your Email ID")
emailID.focus()
return false
}
if (checkEmail(emailID.value)==false){
emailID.value=""
alert("Invalid Email Adderess");
emailID.focus()
return false
}
alert('valid');
return true
}
</script>
<form name="form" method="post" onSubmit="return ValidateEmail()">
Enter an Email Address : <input type="text" name="email" size="30"><br>
<input type="submit" name="Submit" value="Submit">
</form>
</html>
mam żadnych problemów z kodem, ale Jakoś nie rozumiem, co oznacza wyrażenie regularne. Nie rozumiem, co oznacza każda część wyrażenia regularnego. Proszę, oświeć mnie.
Myślisz, że to jest mylące ... spróbuj tego: http://www.ex-parrot.com/pdw/Mail-RFC822-Address.html. Sprawdzanie poprawności adresu e-mail w/regex jest trudne ... zobacz: http://programmers.stackexchange.com/questions/78353/how-far-should-one-take-e-mail-address-validation –