我在控制器中设置值时遇到错误,例如01234
并将其转换为字符串而不删除0
并因使用input type number
作为值而在string
上收到错误,我想在输入字段中显示零,并且无法切换到input type text
!
答案 0 :(得分:1)
您只需使用tel
<input type="tel" ng-model="myNumber">
然后在控制器中
$scope.myNumber = "01234";
查看此plunker http://plnkr.co/edit/Y5GQiLpENthi7ccok5hJ?p=preview