Bootstrap中关于Checkbox全选实现不了的问题解决
今天在用Bootstrap模板(使用的是Metronic模板)改写时,遇到需要对管理员批量重置密码的需求,需要自己实现Checkbox的全选和反选,但是对于我原来写的js代码,在这里就不适用了。
下面是界面
HTML部分代码
<table class="table table-striped table-bordered table-hover " id="sample_1">
<thead>
<tr>
<th style="width:8px;"><input type="checkbox" id="checkall" class="checker" data-set="#sample_1 .checkboxes" /></th>
<th >管路员ID</th>
<th >姓 名</th>
<th >登录账户</th>
<th >电话</th>
<th >电子邮箱</th>
<th >授权日期</th>
<th >拥有角色</th>
<th > </th>
<th > </th>
</tr>
</thead>
<tbody>
<c:forEach items="${ainfo}" var="ad">
<tr class="odd gradeX">