我的html页面中有一个类型编号的输入框,因为它允许多个小数位而不是只接受一个小数位,任何人都可以告诉我为什么会出现这样的问题以及如何解决这个问题。
HTML:
<input stopccp focus-me class="inputContainer" type="number" name=""
ng-model="vm.total_amount[$index]" ng-change="vm.onTotalCost()"
limit-char limit="5">
答案 0 :(得分:0)
您只需添加:
** step =“ .01” **
<input type="number" class="form-control" id="interest" placeholder="Interest" step=".01">
我认为这应该适合您的情况。