JS control text box to enter only the number and decimal point method

Source: Internet
Author: User
Tags regular expression

This article mainly introduces the JS control text box only input numbers and decimal point of the method, example analysis of JavaScript using regular expression to achieve the limit of numbers and decimal point of the skills, has a certain reference value, the need for friends can refer to the

This article describes the JS control text box to enter only the number and decimal point method. Share to everyone for your reference. The implementation methods are as follows:

The code is as follows: function Clearnonum (obj) {
Obj.value = Obj.value.replace (/[^d.) /g, "")//Clear "number" and "." Characters outside of
Obj.value = Obj.value.replace (/^./g, "");//Verify that the first character is a number instead of a.
Obj.value = Obj.value.replace (/.{ 2,}/g, "."); /Keep only the first one. Clear the excess.
Obj.value = Obj.value.replace (".", "$#$"). Replace (/./g, ""). Replace ("$#$", ".");
}

Usage is as follows:

The code is as follows: <input name= "input1" onkeyup= "Clearnonum (This)" >

I hope this article will 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.