我有一个浮点值,我想在< input> ;:::2中总是显示2位小数位置的ng模型
<input ng-model="myNumb" step ="0.01" type="number">
大多数情况下,当“myNumb”具有十进制时,此功能很有效。但是如果“myNumb”小于2位小数(3.2)或整数(30),则不会强制显示2位小数。
如何在< input>中强制显示2位小数位。领域
AngularJS – Input number with 2 decimal places它可以帮助…
过滤:
原文链接:https://www.f2er.com/angularjs/144334.html过滤:
- Set the regular expression to validate the input using ng-pattern. Here I want to accept only numbers with a maximum of 2 decimal places and with a dot separator.
<input type="number" name="myDecimal" placeholder="Decimal" ng-model="myDecimal | number : 2" ng-pattern="/^[0-9]+(\.[0-9]{1,2})?$/" step="0.01" />
向前看,这是ng-model=”myDecimal | number : 2″的下一个答案。