想用angular做一个自动加法器,代码如下
<input type="text" ng-model="add1"> <input type="text" ng-model="add2"> <p>total={{add1+add2}}</p>
此代码只是但单纯地把字符串连起来了,想用parseInt(add1)+parseInt(add2)但没用,不知道angular有什么方法把字符转为数值。
<p>total={{add1 * 1 + add2 * 1}}</p>
You can add the corresponding function in $scope
$scope.parseInt = parseInt;
Then you can use it
parseInt(add1) + parseInt(add2)
You can add the corresponding function in $scope
Then you can use it