前端页面使用AngularJS框架的情况下如何判断复选框是否选中,以及向集合中添加和移除id

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/wang1171405487/article/details/84303033

使用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>

猜你喜欢

转载自blog.csdn.net/wang1171405487/article/details/84303033