angularjs – Angular如何显示数字总是带有2个小数位

前端之家收集整理的这篇文章主要介绍了angularjs – Angular如何显示数字总是带有2个小数位前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个浮点值,我想在< input&gt ;:::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它可以帮助…
过滤:
  1. 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″的下一个答案。

原文链接:https://www.f2er.com/angularjs/144334.html

猜你在找的Angularjs相关文章