JS Judge mobile phone number operator's method _javascript skill

Source: Internet
Author: User

This article describes the method of JS to judge the mobile phone number operator. Share to everyone for your reference. Specifically as follows:

When doing a Web project, sometimes need to according to the user's input cell phone number to judge the operator is mobile, unicom, telecommunications or other, and then according to different operators to make corresponding processing, the following describes how to determine the number of JS mobile phone operator code.
JS Implementation method:

var ischinamobile =/^134[0-8]\\d{7}$|^ (?: 13[5-9]|147|15[0-27-9]|178|18[2-478]) \\d{8}$/; Mobile aspect of the latest response var ischinaunion =/^ (?: 13[0-2]|145|15[56]|176|18[56]) \\d{8}$/; To Unicom micro-blog confirmed did not respond to var ischinatelcom =/^ (?: 133|153|177|18[019]) \\d{8}$/; Section 1349th Telecommunications did not give a response, as does not exist var isothertelphone =/^170 ([059]) \\d{7}$/;//other operators var utils = {Checkmobile:function (Telph
    One) {Telphone = This.trim (Telphone);
    if (Telphone.length!==) {return This.setreturnjson (false, ' no correct phone number detected ');
      } else{if (Ischinamobile.test (Telphone)) {return This.setreturnjson (true, ' move ', {name: ' Chinamobile '});
      else if (Ischinaunion.test (Telphone)) {return This.setreturnjson (true, ' Unicom ', {name: ' Chinaunion '});
      else if (Ischinatelcom.test (Telphone)) {return This.setreturnjson (true, ' telecom ', {name: ' chinatelcom '});
        else if (Isothertelphone.test (Telphone)) {var num = isothertelphone.exec (telphone); Return This.setreturnjson (True,', {name: '} ';
      else{return This.setreturnjson (False, ' no correct phone number detected ');  }}, Setreturnjson:function (Status, MSG, data) {if (TypeOf status!== ' Boolean ' && typeof status!==
    ' number ') {status = FALSE;
    } if (typeof msg!== ' string ') {msg = ';
  return {' Status ': Status, ' msg ': MSG, ' Data ': data};
 }
}

The

wants this article to help you with your JavaScript programming.

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.