This article introduces the use of jquery to verify the mailbox, verify the mobile phone number, the specific implementation of ideas and code as follows, interested friends can learn to
copy code code as follows:
//jquery Verify mailbox
Function Checksubmitemail () {
if ($ ("#email"). val () = "") {
//$ ("#confirmMsg"). HTML (" <font color= ' Red ' > E-mail address cannot be empty! </font> ");
Alert ("Mailbox cannot be empty!")
$ ("#email"). focus ();
return false;
}
if (!$ ("#email"). Val (). Match (/^w+ (-w+) | (. w+)) *@[a-za-z0-9]+ ((. | -) [a-za-z0-9]+] *. [a-za-z0-9]+$/)] {
Alert ("Incorrect mailbox format");
//$ ("#confirmMsg"). HTML ("<font color= ' Red ' > Mailbox format is not correct!) Please re-enter! </font> ");
$ ("#email"). focus ();
return false;
}
return true;
}
//jquery Verify mobile number
Function Checksubmitmobil () {
if ($ ("#mobile"). val () = "" "{
Alert (" Cell phone number cannot be be empty! ");
//$ ("#moileMsg"). HTML ("<font color= ' red ' > Mobile number cannot be empty! </font> ");
$ ("#mobile"). focus ();
return false;
}
if (!$ ("#mobile"). Val (). Match (/^ (13[0-9]{1) |159|153 +d{8}) $/)) {
Alert ("The cell phone number is not in the correct format!") ");
//$ ("#moileMsg"). HTML ("<font color= ' red ' > Phone number is not in the correct format!) Please re-enter! </font> ");
$ ("#mobile"). FocuS ();
return false;
}
return true;
}