列表的全选反选

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    //这里的angular包  自己引入
    <style>
        button{
            border-radius: 8px;
            margin-left: 320px;
            border: 1px solid #555555;
            background: #555555;
            color: white;
        }
        table{
            border: 1px solid #555555;
            width: 400px;
        }
    </style>
    <script>
        var myapp=angular.module("myapp",[]);
        myapp.controller("myCtrl",function ($scope) {
            $scope.data=[
                {
                    id:"1",
                    name:"张三",
                    age:"24",
                    sex:"男",
                    check:false
                },{
                    id:"2",
                    name:"李四",
                    age:"27",
                    sex:"女",
                    check:false
                },{
                    id:"3",
                    name:"王妹妹",
                    age:"18",
                    sex:"女",
                    check:false
                },{
                    id:"4",
                    name:"赵六",
                    age:"60",
                    sex:"男",
                    check:false
                }
            ];

            //删除数据
            $scope.del=function () {
                var num=0;
                for(var i=0;i<$scope.data.length;i++){
                    if($scope.data[i].check==false){
                        num++;
                    }
                }
                if(num==$scope.data.length){
                    alert("请勾选数据");
                }else{
                    for(var i=0;i<$scope.data.length;i++){
                        if($scope.data[i].check==true){
                            $scope.data.splice(i,1);
                            i--;
                        }
                    }
                };
            };

            //全选
            $scope.checkAll=false;
            $scope.check2=function () {
                if($scope.checkAll==true){
                    for(var i=0;i<$scope.data.length;i++){
                        $scope.data[i].check=true;
                    }
                }else{
                    for(var i=0;i<$scope.data.length;i++){
                        $scope.data[i].check=false;
                    }
                }
            }
            //反选
            var n=0;
            $scope.count=function(index) {

                if($scope.data[index].check==true){
                    n++;
                }else{
                    n--;
                }
                if(n==$scope.data.length){
                    $scope.checkAll=true;
                }else{
                    $scope.checkAll=false;
                }

            };
        });
    </script>
</head>
<body ng-app="myapp" ng-controller="myCtrl">
<button ng-click="del()">删除选中项</button>
<table cellspacing="0" cellpadding="10" border="1">
    <thead>
    <tr>
        <th><input type="checkbox" ng-model="checkAll" ng-click="check2()">全选</th>
        <th>ID</th>
        <th>姓名</th>
        <th>年龄</th>
        <th>性别</th>
    </tr>
    </thead>
    <tbody>
    <tr  ng-repeat="item in data">
        <td><input type="checkbox" ng-model="item.check" ng-click="count($index)"></td>
        <td>{{item.id}}</td>
        <td>{{item.name}}</td>
        <td>{{item.age}}</td>
        <td>{{item.sex}}</td>
    </tr>
    </tbody>
</table>
</body>
</html>

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值