jquery phone number, mailbox format Validator Code

Source: Internet
Author: User


Let's take a look at the match usage in jquery.

String.match (Regular)

It looks the same as JS.


The regular rules for the phone number and the email we'll see.

Cell phone number Regular: ^ (((13[0-9]{1}) |159|153) +d{8})

Email address Regular: w+ (-w+) | (. w+)) *@[a-za-z0-9]+ ((. | -) [a-za-z0-9]+] *. [A-za-z0-9]

Now let's look at an example

The code is as follows Copy Code

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;
}


This principle is very simple to get the value of input and then judge it just fine and JS phone number verification is no different.

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.