jquery+ Regular + text box can only input the realization method of the number _jquery

Source: Internet
Author: User

A small feature in a Web site that requires users to enter only 16 digits.

Try the JavaScript method:

For example: One method:

Only allow input number
     function Checkkey2 (value, e) {
       var key = window.event? E.keycode:e.which;
       if (Key > && key < 106) | | (Key > && key < 60)) {

       }
       else if (key!= 8) {
         if (window.event)//ie
         {
           e.returnvalue = false; 
         }
         else//firefox
         {
           e.preventdefault ();
         }
       };
     

Another method:

Only numbers can be entered with regular expression restrictions:
onkeyup= "Value=value.replace (/[^/d]/g," "Onbeforepaste=" clipboarddata.setdata (' text '), Clipboarddata.getdata (' text '). Replace (/[^/d]/g, ') " 

The above two methods I have used, but there are a number of problems, such as browser compatibility issues, can not achieve the desired effect, so, finally consider using the regular to write their own.

Direct code, very simple regular expression:

 
 

Page effect:

Browser compatibility:

I am under the IE7.8.9.10, firefox,chrome under the test can be.

The above is a small series for everyone to bring jquery+ regular + text box can only enter the realization of the number of the full content, I hope that we support cloud-Habitat Community ~

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.