Plnkr:https ://plnkr.co/edit/Tt96EE2rruy1HAudRVJR?p=preview
我有以下嵌套的复选框循环:
<ul>
<li ng-repeat="continent in destinations">
<input type="checkbox" ng-model="continent.selected">
{{continent.name}} ({{continent.countries_selected}} / {{continent.countries.length}}) - {{continent.all_selected}}
<ul>
<li ng-repeat="country in continent.countries">
<input type="checkbox" ng-model="country.selected" ng-checked="continent.selected">
{{country.name}}
</li>
</ul>
</li>
</ul>
这是检测 ($watch) 是否已选中部分或所有子复选框的代码,如果是,则父复选框也会被选中。
这很好用。
但是,当我检查父框时,它不会检查。
我想要实现的是,当我选中父复选框时,它的所有子复选框也会被选中,当我取消选中父复选框时,它的所有子复选框都会被选中。
$scope.$watch('destinations', function(destinations){
var total_selected = 0;
angular.forEach(destinations, function(continent){
continent.countries_selected = 0;
angular.forEach(continent.countries, function(country){
total_selected += country.selected ? 1 : 0
continent.countries_selected += country.selected ? 1 : 0
if (continent.countries_selected == continent.countries.length) {
continent.selected = true;
} else {
continent.selected = false;
}
});
});
$scope.select_all = function(continent){
continent.selected = true;
}
$scope.total_selected = total_selected;
}, true);