liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<%@ tag language="java" pageEncoding="UTF-8"%>
<%@ include file="/webpage/include/taglib.jsp"%>
<%@ attribute name="id" type="java.lang.String" required="true"%>
<%@ attribute name="url" type="java.lang.String" required="true"%>
<%@ attribute name="label" type="java.lang.String" required="false"%>
<button class="btn btn-white btn-sm" onclick="deleteAll()" data-toggle="tooltip" data-placement="top"><i class="fa fa-trash-o"> ${label==null?'删除':label}</i>
                        </button>
<%-- 使用方法: 1.将本tag写在查询的form之前;2.传入table的id和controller的url --%>
<script type="text/javascript">
$(document).ready(function() {
    $('#${id} thead tr th input.i-checks').on('ifChecked', function(event){ //ifCreated 事件应该在插件初始化之前绑定 
          $('#${id} tbody tr td input.i-checks').iCheck('check');
        });
 
    $('#${id} thead tr th input.i-checks').on('ifUnchecked', function(event){ //ifCreated 事件应该在插件初始化之前绑定 
          $('#${id} tbody tr td input.i-checks').iCheck('uncheck');
        });
    
});
 
    function deleteAll(){
 
        // var url = $(this).attr('data-url');
          var str="";
          var ids="";
          $("#${id} tbody tr td input.i-checks:checkbox").each(function(){
            if(true == $(this).is(':checked')){
              str+=$(this).attr("id")+",";
            }
          });
          if(str.substr(str.length-1)== ','){
            ids = str.substr(0,str.length-1);
          }
          if(ids == ""){
            top.layer.alert('请至少选择一条数据!', {icon: 0, title:'警告'});
            return;
          }
            top.layer.confirm('确认要彻底删除数据吗?', {icon: 3, title:'系统提示'}, function(index){
            window.location = "${url}?ids="+ids;
            top.layer.close(index);
        });
         
 
    }
</script>