salve ho scritto una funzione che dovrebbe controllare che la mai che inserisco sia conforme al formato che ho deciso e inserito nella variabile emailRegEx ma mi da sempre il messaggio di errore che non lo rispetta potete aiutarmi
codice:
Codice HTML:
<html>
<head><title>prova email</title>
<script type = "text/javascript">
function verifyEmail(){
var status = false;
var emailRegEx = /^[a-z]{1}.[a-z0-9]@[studenti].[uniba].[it]$/g;
/* /^[a-z].[a-z]@[uniba].[it]$/g per i professori */
if (document.myform.email1.value.search(emailRegEx) == -1) {
alert("Please enter a valid email address.");
}
else {
alert("The email address is in the correct format and they are the same.");
status = true;
}
return status;
}
</script>
</head>
<body>
<form name="myform">
Email: <input type="text" name="email1">
<input type="button" onClick="verifyEmail();" value="Check Email Address">
</form>
</body>
</html>