Validate phone numbers with jquery

Source: Internet
Author: User
var ismobile=/^ (?: 13d|15d) D{5} (D{3}|*{3}) $/;   
var isphone=/^ ((0d{2,3})-)? (d{7,8}) (-(D{3,}))? $/;
 if (! Ismobile.test (value to be validated) &&!isphone.test (value to be validated)) {
            alert ("Please fill in the phone number correctly, for example: 13415764179 or 0321-4816048");
            return false;
        }
 
<script>
 //var str = "+8615245678901";
 var str = "68836694";
 var str = "0100-68836694";
var Partten =/(^[0-9]{3,4}-[0-9]{3,8}$) | (^[0-9]{3,8}$) | (^ ([0-9]{3,4})
[0-9] {3,8}$) | (^0{0,1}13[0-9]{9}$)/;
var partten=/^ (?: +86)? (?: 13d|15d|18d) d{8}$/;  Mobile phone
 var partten=/^ (?:(?: 0 d{2,3})? (?:d {7,8}) (-(?:d {3,})) $/;  Fixed telephone
 alert (Str.match (Partten));
</script>

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.