我需要帮助:AngularJS - 当复选框被选中时,我想打印我检查过的内容。
这是预览。当我点击每个价格时,我想总结这些价格。
Check the jsfiddle
我需要帮助:AngularJS - 当复选框被选中时,我想打印我检查过的内容。
这是预览。当我点击每个价格时,我想总结这些价格。
Check the jsfiddle
这个怎么样
主要思想是使用 ng-click 来捕捉检查了哪一个并在 mainctrl $scope 中总结
app.controller('MainCtrl', function($scope) {
$scope.sum = 0;
$scope.Selected = function (val,smartphone){
if(val){
$scope.sum += parseInt(smartphone.price,10);
}else{
$scope.sum -= parseInt(smartphone.price,10);
}
};
});