|
for (var i = 0; i < $scope.portalListData.length; i++) {
if ($scope.portalListData[i].checked) { //选中的
$scope.portalListData.splice($scope.portalListData.indexOf($scope.portalListData[i]), 1);
} else {
}
}
如上 删除会出现问题,比如选中八个只会删除四个,选中四个删除两个,此处一个解决方法就是 在删除掉本条之后,即 $scope.portalListData.splice($scope.portalListData.indexOf($scope.portalListData[i]), 1);这一句之后加一句 i-- 就可以解决了!
for (var i = 0; i < $scope.portalListData.length; i++) {
if ($scope.portalListData[i].checked) { //选中的
$scope.portalListData.splice($scope.portalListData.indexOf($scope.portalListData[i]), 1); i--;
} else {
}
}
|
|