Js 中 forEach 不能使用 continue, break 跳出循环
可以使用 if 语句控制,或者 return . (return true/false) // return --> 类似 for 循环的 continue
//全选
$scope.selectAll = function(){
var all = $scope.all;
angular.forEach($scope.items, function (item, index) {
if(item.hasInventory){
item.checked = all;
if(all)
os[index] = item;
}else{
return; //跳出当前循环、或者不写 else
}
});
if(!all)
os = new Array();
}
时间: 2024-10-08 14:51:45