您好我发现了一个脚本,它使用复选框选择全部/取消选中所有复选框,我在这里找到了一个工作示例http://jsfiddle.net/ThiefMaster/HuM4Q/
问题是当我试图将它集成到我自己的html中时。它继续工作,这是我的代码:
的javascript:
<head>
<script>
$('#checkAll').click(function() {
if(this.checked) {
$('input:checkbox').attr('checked', true);
}
else {
$('input:checkbox').removeAttr('checked');
}
});
$('input:checkbox:not(#checkAll)').click(function() {
if(!this.checked) {
$('#checkAll').removeAttr('checked');
}
else {
var numChecked = $('input:checkbox:checked:not(#checkAll)').length;
var numTotal = $('input:checkbox:not(#checkAll)').length;
if(numTotal == numChecked) {
$('#checkAll').attr('checked', true);
}
}
});
</script>
</head>
这些是我的HTML:
<h2>Courses</h2>
<?php
$attributes = array('name' => 'list','id' => 'form' );
echo form_open('courses/edit',$attributes);?>
<table class="data display datatable" id="example">
<thead>
<tr>
<th>ID</th>
<th>Title</th>
<th>Description</th>
<th>Units</th>
<th>Notes</th>
<th><input type="checkbox" id="checkAll"></th>
</tr>
</thead>
<tbody>
<?php foreach($query->result_array() as $row): ?>
<tr class="even gradeC">
<td><?php echo anchor('courses/details/'.$row['courseID'],$row['courseID']);?></td>
<td><?php echo $row['courseTitle'];?></td>
<td><?php echo $row['courseDesc'];?></td>
<td><?php echo $row['courseUnits'];?></td>
<td><?php echo $row['courseNotes'];?></td>
<td><input type="checkbox" name="checkID[]" id="checkID" value="<?php echo $row['courseID'];?>"/></td>
</tr>
<? endforeach; ?>
</tbody>
</table>
答案 0 :(得分:0)
尝试修复此行:
<td><input type="checkbox" name="checkID[]" id="checkID" value="<?php echo $row['courseID'];?>"/></td>
id属性应该是唯一的,例如,只有一个元素应该具有id“checkID”,而不是每一行。尝试完全删除该属性或使其对每一行都是唯一的,以查看您的javascript是否自行排序。
另外,你需要一个像这样的行,在你的脑海中:
<script type='text/javascript' src='http://code.jquery.com/jquery-1.4.4.min.js'></script>
答案 1 :(得分:0)
该脚本使用jQuery。确保在页面中包含jQuery脚本。