Angular多选、全选、批量选择操作实例代码
程序员文章站
2022-11-19 22:49:56
在前台开发过程中,列表批量选择是一个开发人员经常遇到的功能,列表批量选择的实现方式很多,但是原理基本相同,本文主要来讲angularjs如何简单的实现列表批量选择功能。...
在前台开发过程中,列表批量选择是一个开发人员经常遇到的功能,列表批量选择的实现方式很多,但是原理基本相同,本文主要来讲angularjs如何简单的实现列表批量选择功能。
首先来看html代码
<table cellpadding="0" cellspacing="0" border="0" class="datatable table table-hover datatable"> <thead> <tr> <th><input type="checkbox" ng-click="selectall($event)" ng-checked="isselectedall()"/></th> <th>姓名</th> <th>单位</th> <th>电话</th> </tr> </thead> <tbody> <tr ng-repeat="item in content"> <td><input type="checkbox" name="selected" ng-checked="isselected(item.id)" ng-click="updateselection($event,item.id)"/></td> <td>{{item.baseinfo.name}}</td> <td>{{item.orgcompanyname}}</td> <td>{{item.baseinfo.mobilenumberlist[0].value}}</td> </tr> </tbody> </table>
html里面简单建立一个表格,与批量选择相关的只有两处。
一处是第3行 ng-click="selectall($event)"
,用来做全选的操作; ng-checked="isselectedall()
用来判断当前列表内容是否被全选。
一处是第12行 ng-click="updateselection($event,item.id)
,用来对某一列数据进行选择操作; ng-checked="isselected(item.id)
用来判断当前列数据是否被选中。
然后需要在与该页面相对应的controller中实现与批量选择相关的方法
//创建变量用来保存选中结果 $scope.selected = []; var updateselected = function (action, id) { if (action == 'add' && $scope.selected.indexof(id) == -1) $scope.selected.push(id); if (action == 'remove' && $scope.selected.indexof(id) != -1) $scope.selected.splice($scope.selected.indexof(id), 1); }; //更新某一列数据的选择 $scope.updateselection = function ($event, id) { var checkbox = $event.target; var action = (checkbox.checked ? 'add' : 'remove'); updateselected(action, id); }; //全选操作 $scope.selectall = function ($event) { var checkbox = $event.target; var action = (checkbox.checked ? 'add' : 'remove'); for (var i = 0; i < $scope.content.length; i++) { var contact = $scope.content[i]; updateselected(action, contact.id); } }; $scope.isselected = function (id) { return $scope.selected.indexof(id) >= 0; }; $scope.isselectedall = function () { return $scope.selected.length === $scope.content.length; };
controller中主要是对html中用到的几个方法的实现,相对来讲实现代码还是比较简洁易懂的。
多选效果展示如下
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。