前端 - 用angularjs时字符串转换问题
巴扎黑
巴扎黑 2017-05-15 16:51:59
0
2
506

想用angular做一个自动加法器,代码如下

    <input type="text" ng-model="add1">
    <input type="text" ng-model="add2">
    <p>total={{add1+add2}}</p>

此代码只是但单纯地把字符串连起来了,想用parseInt(add1)+parseInt(add2)但没用,不知道angular有什么方法把字符转为数值。

巴扎黑
巴扎黑

reply all(2)
Peter_Zhu
 <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)
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template