前端頁面使用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>

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章