Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize the function of entering only two decimal places in javascript

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article introduces you how javascript can only input two decimal places, the content is very detailed, interested friends can refer to, hope to be helpful to you.

Method: 1. Add "oninput=" value=value.toString (). Match (/ ^\ d + (?:\. D {0Magne2})? /) to the input tag.

2. Bind the onimput event to the input tag, which is realized by using rules in the handling function.

The operating environment of this tutorial: windows7 system, javascript1.8.5 version, Dell G3 computer.

Javascript limit input box can only enter numbers with two decimal places

Method 1:

You can only enter two decimals.

Method 2: bind the onimput event to the input tag, and in the event handler, use regular expressions to

Implementation code 1:

Var vv = ""; document.getElementById ("put"). Oninput=function () {var val = this.value.replace (/\. /, "); var valArr=this.value.split ('.'); if ((/\ Dhand g) .test (val) | | valArr.length > 2 | | valArr.length > 1&&Number (valArr [1]) > 99) {this.value=vv;}}

Implementation code 2:

Var vv = ""; document.getElementById ("put"). Oninput=function () {if (! (/ ^\ d + (.\ d {0Magne2})? $/) .test (this.value)) {this.value=vv;} vv.this.value; return false;}

On how to achieve javascript can only enter two decimal places to share here, I hope that the above content can be of some help to you, can learn more knowledge. If you think the article is good, you can share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report