jquery Verify that the phone number and mailbox format are correct sample code _jquery

Source: Internet
Author: User
Copy Code code as follows:

jquery Verification 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 Verification Cell Phone number
function Checksubmitmobil () {
if ($ ("#mobile"). val () = "") {
Alert ("Mobile phone number cannot 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 ("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;
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.