Javascript full-angle conversion implementation code

Source: Internet
Author: User

Let's take a look at this example!
Copy codeThe Code is as follows:
<Html>
<Head>
<Title> jqueryDemo: quanjiaoNum </title>
<Script src = "jquery. js" src = "jquery. js" type = "text/javascript"> </script>
<Script type = "text/javascript"> <! --
Function changeNum (){
Var qjNum = $ ("input [@ name = qjNum]"). val ();
Var toAscii = qjNum. charCodeAt ();
If (toAscii> 65295 & toAscii <65306 & qjNum. length = 11)
{
Var toBack = 0;
Var temp = 0;
Var unite = "";
For (var I = 0; I <qjNum. length; I ++)
{
ToAscii = qjNum. charCodeAt (I );
ToBack = toAscii-65248;
Temp = String. fromCharCode (toBack );
Unite = unite + temp;
}
Alert (unite );
Return true;
}
If (toAscii> 47 & toAscii <58 & qjNum. length = 11)
{
Alert (qjNum );
Return true;
}
Else {
Alert ("enter the correct mobile phone number ");
Document. myform. qjNum. value = "";
Return false;
}
}

// --> </Script>
</Head>
<Form name = "myform" action = "">
Convert Chinese numbers to Arabic numerals: <input type = "text" id = "qjNum" name = "qjNum"/> <input type = "button" value = "Submit" onclick = "changeNum () "/>
</Form>
</Html>

This is a mobile phone number judgment problem! In addition, please note that jquery is also used! Remember to introduce it ......

Related Article

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.