当您在输入字段中输入内容时,例如:10000.00
我想在输入字段中将其格式化为10,000.00
。
我有以下内容:
$scope.a = '';
$scope.addCommas = function(a){
a = $filter('number')(a,2);
$scope.b = a;
}
我可以在b
中输出正确的格式,但如果我用$scope.a = a
替换最后一行,它就无法正常工作。
<input type="text" ng-model="a" ng-change="addCommas(a)">