我有一个这样的表格,每行都有一个复选框,每列都有复选框。因此,当我选中行和表格标题中的复选框时,我想显示/隐藏每个td中数据旁边的刻度标记图像。当我取消选中时,勾选标记应该隐藏。
演示:http://jsfiddle.net/MpzXU/3/
<table id="example">
<thead>
<tr>
<th></h>
<th>PO Number</th>
<th>Hangtag<input type="checkbox" value="hangtag" class="ht_chkbx"/></th>
<th>Care Label<input type="checkbox" value="Care Label" class="cl_chkbx"/></th>
<th>UPC<input type="checkbox" value="UPC" class="upc_chkbx"/></th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="checkbox" name="checkbox2" id="checkbox2"></td>
<td>6711112</td>
<td>1</td>
<td>20</td>
<td>17</td>
</tr>
</tbody>
</table>
答案 0 :(得分:2)
您可以使用以下内容:
//Monitor the main checkbox ( $("#macDaddyCheckbox") ) for changes
$("#macDaddyCheckbox").change(function(){
if($(this).is(":checked")){
//It is checked, so hide the other checkboxes
$(".babyCheckboxes").hide();
} else {
//It is not chceked, so show the other checkboxes
$(".babyCheckboxes").show();
}
});
编辑:
var myImg = $("#myImg");
$("#checkBoxAtTheRow").change(function(){
if($(this).is(":checked")){ myImg.hide(); } else { myImg.show(); }
});
$(".tableHeaderCheckBoxes").change(function(){
if($(this).is(":checked")){ $(".babyCheckboxes").hide(); } else { $(".babyCheckboxes").show(); }
});
答案 1 :(得分:1)
JSFiddle Demo(编辑以符合评论)
我通过添加一个类来更改复选框更改时文本的颜色。 对于每个我检查在删除类之前是否取消选中相应的复选框(行和列)。
HTML
<table id="example">
<thead>
<tr>
<th></th>
<th>A <input type="checkbox" /></th>
<th>B <input type="checkbox" /></th>
<th>C <input type="checkbox" /></th>
<th>D <input type="checkbox" /></th>
</tr>
</thead>
<tbody>
<tr>
<td>1 <input type="checkbox"></td>
<td>A1</td>
<td>A2</td>
<td>A3</td>
<td>A4</td>
</tr>
<tr>
<td>2 <input type="checkbox"></td>
<td>B1</td>
<td>B2</td>
<td>B3</td>
<td>B4</td>
</tr>
<tr>
<td>3 <input type="checkbox"></td>
<td>C1</td>
<td>C2</td>
<td>C3</td>
<td>C4</td>
</tr>
</tbody>
的jQuery
var headers = $('#example th');
$(':checkbox', '#example').change(function(e){
var isChecked = $(this).is(':checked');
if( $(this).closest('thead').length ){ //columns checkboxes
//getting the column index
var i = headers.index( $(this).parent() );
$('tbody tr', '#example').each(function(){
var isLineChecked = $(':checkbox:checked', this).length;
if( isChecked && isLineChecked ){
$(this).find('td:eq('+i+')').addClass('selected');
} else {
$(this).find('td:eq('+i+')').removeClass('selected');
}
});
} else { //line checkbox
var columnsCheckboxes = $(':checkbox', headers);
$(this).parent().siblings().each(function(i, td){
if( isChecked && columnsCheckboxes.eq(i).is(':checked') ){
$(this).addClass('selected');
} else {
$(this).removeClass('selected');
}
});
}
});
答案 2 :(得分:0)