前端頁面使用AngularJS框架的情況下如何判斷複選框是否選中,以及向集合中新增和移除id
使用angularJS框架的話都需要引入angular.min.js檔案,這個想必各位大佬都懂得,我就不多說了。
這裡主要說說如何判斷複選框是否選中,以及向集合中新增和移除id。
1、如果判斷複選框被選中呢
一般我們在複選框中都是這樣寫:
<td><input type="checkbox" ng-click="updateSelect(entity.id)"></td>
首先在複選框的ng-click中的updateSelect方法里加入$event,這個$event代表的就是複選框控制元件本身。將複選框傳給了updateSelect方法。這樣我們在updateSelect中就可以這樣做了:
$scope.selectIds=[];//使用者勾選的id集合
//使用者勾選複選框
$scope.updateSelect=function($event, id){
if($event.target.checked){
}else{
}
}
上面$event.target就是找到複選框物件,然後呼叫它的checked方法判斷複選框有沒有沒勾選,值為true代表被勾選,值為false代表取消勾選。
2、怎樣向selectIds集合中新增id值呢
呼叫push方法,如下:
$scope.selectIds.push(id);
3、怎樣從selectIds集合中移除id呢
比如我們要刪除一條資料,突然不想刪了,取消了複選框的勾選,那怎麼從selectIds中移除該條複選框的id值呢?
首先我們要在集合中找到id在集合中對於的位置
var index = $scope.selectIds.indexOf(id);
然後呼叫splice方法,如下:
$scope.selectIds.splice(index,1);//引數一:移除的位置,引數二:移除的元素個數
完整程式碼如下,僅供參考,
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>品牌管理</title>
<meta content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no" name="viewport">
<link rel="stylesheet" href="../plugins/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="../plugins/adminLTE/css/AdminLTE.css">
<link rel="stylesheet" href="../plugins/adminLTE/css/skins/_all-skins.min.css">
<link rel="stylesheet" href="../css/style.css">
<link rel="stylesheet" href="../plugins/angularjs/pagination.css">
<script src="../plugins/jQuery/jquery-2.2.3.min.js"></script>
<script src="../plugins/bootstrap/js/bootstrap.min.js"></script>
<script src="../plugins/angularjs/angular.min.js"></script>
<script src="../plugins/angularjs/pagination.js"></script>
<script type="text/javascript">
var app=angular.module('test',['pagination']);
app.controller('brandController',function($scope,$http){
$scope.selectIds=[];//使用者勾選的id集合
//使用者勾選複選框
$scope.updateSelect=function($event, id){
if($event.target.checked){
$scope.selectIds.push(id);//向集合中新增元素
}else{
var index = $scope.selectIds.indexOf(id);//查詢id在集合中的位置
$scope.selectIds.splice(index,1);//引數一:移除的位置,引數二:移除的元素個數
}
}
//刪除
$scope.dele=function(){
$http.get('../brand/delete.do?ids='+$scope.selectIds).success(
function(response){
if(response.success){
$scope.reloadList();//重新整理
}else{
alert(response.message);
}
}
);
}
});
</script>
</head>
<body class="hold-transition skin-red sidebar-mini" ng-app="test" ng-controller="brandController">
<!-- .box-body -->
<div class="box-header with-border">
<h3 class="box-title">品牌管理</h3>
</div>
<div class="box-body">
<!-- 資料表格 -->
<div class="table-box">
<!--工具欄-->
<div class="pull-left">
<div class="form-group form-inline">
<div class="btn-group">
<button type="button" class="btn btn-default" title="新建" data-toggle="modal" data-target="#editModal" ng-click="entity={}"><i class="fa fa-file-o"></i> 新建</button>
<button type="button" class="btn btn-default" title="刪除" ng-click="dele()"><i class="fa fa-trash-o"></i> 刪除</button>
<button type="button" class="btn btn-default" title="重新整理" onclick="window.location.reload();"><i class="fa fa-refresh"></i> 重新整理</button>
</div>
</div>
</div>
<div class="box-tools pull-right">
<div class="has-feedback">
</div>
</div>
<!--工具欄/-->
<!--資料列表-->
<table id="dataList" class="table table-bordered table-striped table-hover dataTable">
<thead>
<tr>
<th class="" style="padding-right:0px">
<input id="selall" type="checkbox" class="icheckbox_square-blue">
</th>
<th class="sorting_asc">品牌ID</th>
<th class="sorting">品牌名稱</th>
<th class="sorting">品牌首字母</th>
<th class="text-center">操作</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="entity in list">
<td><input type="checkbox" ng-click="updateSelect($event, entity.id)"></td>
<td>{{entity.id}}</td>
<td>{{entity.name}}</td>
<td>{{entity.firstChar}}</td>
<td class="text-center">
<button type="button" class="btn bg-olive btn-xs" data-toggle="modal" data-target="#editModal" >修改</button>
</td>
</tr>
</tbody>
</table>
<!--資料列表/-->
<!-- 分頁控制元件 -->
<tm-pagination conf="paginationConf"></tm-pagination>
</div>
<!-- 資料表格 /-->
</div>
<!-- /.box-body -->
<!-- 編輯視窗 -->
<div class="modal fade" id="editModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog" >
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">品牌編輯</h3>
</div>
<div class="modal-body">
<table class="table table-bordered table-striped" width="800px">
<tr>
<td>品牌名稱</td>
<td><input class="form-control" placeholder="品牌名稱" ng-model="entity.name"> </td>
</tr>
<tr>
<td>首字母</td>
<td><input class="form-control" placeholder="首字母" ng-model="entity.firstChar"> </td>
</tr>
</table>
</div>
<div class="modal-footer">
<button class="btn btn-success" data-dismiss="modal" aria-hidden="true">儲存</button>
<button class="btn btn-default" data-dismiss="modal" aria-hidden="true">關閉</button>
</div>
</div>
</div>
</div>
</body>
</html>