jquery Limit text box can only enter numbers, jquery limit text box can only enter numbers and decimal points

Source: Internet
Author: User

  1. /*jquery Limit text box to enter only numbers and decimal places */
  2. <script>
  3. $ (function () {
  4. /*jquery Limit text box to enter only numbers * /
  5. $ ("#id"). KeyUp (function () {
  6. $ (This). Val ($ (this). Val (). replace (/\d|^0/g,"));
  7. }). bind ("paste",function () { //ctr+v event handling
  8. $ (This). Val ($ (this). Val (). replace (/\d|^0/g,"));
  9. }). css ("Ime-mode", "disabled"); //css setting IME is not available
  10. /*jquery Limit text box to enter only numbers and decimal places */
  11. $ ("#id"). KeyUp (function () {
  12. $ (This). Val ($ (this). Val (). replace (/[^0-9.)      /g,"));
  13. }). bind ("paste",function () { //ctr+v event handling
  14. $ (This). Val ($ (this). Val (). replace (/[^0-9.)       /g,"));
  15. }). css ("Ime-mode", "disabled"); //css setting IME is not available
  16. });
  17. </script>

jquery Limit text box can only enter numbers, jquery limit text box can only enter numbers and decimal points

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.