正如您最近在我的问题的历史中看到的那样,我正在尝试理解Jquery / Javascript :)我遇到了以下问题并想向您提出建议。
我有下表(注意:这是由inspect元素抓取的HTML,我不确定为什么style =“background-color:rgb(255,255,255);是吗...):
<table class="table table-striped table-condensed" id="instance-table">
<thead>
<tr id="checkrow">
<th><input type="checkbox" id="checkall"></th>
<th>Column A</th>
<th>Column A</th>
<th>Column A</th>
</tr>
</thead>
<tbody id="instanceInnerContent">
<tr style="background-color: rgb(255, 255, 255);">
<td class="act"><input type="checkbox"></td>
<td>Value 1</td>
<td>Value 2</td>
</tr>
<tr style="background-color: rgb(255, 255, 255);">
<td class="act"><input type="checkbox"></td>
<td>Value 1</td>
<td>Value 2</td>
</tr>
</tbody>
</table>
使用以下代码选择行或全部选择它们或选择行点击:
// if user clicks on checkbox with id="checkall" - all checkboxes are selected
// and table row background is highlighted
$('body').on('click', '#checkall', function () {
$('input:checkbox:not(#checkall)').prop('checked',this.checked);
if ($(this).is(':checked') == true) {
$("#instance-table").find('tr:not(#checkrow)').css("background-color","#ccc");
//$('#instance-action').removeAttr('disabled');
} else {
$("#instance-table").find('tr:not(#checkrow)').css("background-color","#fff");
//$('#instance-action').attr('disabled', 'disabled');
}
});
// if user clicks on checkbox, diffrent than checkbox with id="checkall" ,
// then checkbox is checked/unchecked
$('body').on('click', 'input:checkbox:not(#checkall)', function () {
if($("#checkall").is(':checked') == true && this.checked == false) {
$("#checkall").prop('checked',false);
$(this).closest('tr').css("background-color","#ffffff");
}
if(this.checked == true) {
$(this).closest('tr').css("background-color","#ccc");
//$('#instance-action').removeAttr('disabled');
// function to check/uncheck checkbox with id="checkbox"
CheckSelectAll();
}
if(this.checked == false) {
$(this).closest('tr').css("background-color","#ffffff");
//$('#instance-action').attr('disabled', 'disabled');
}
});
// if user clicks, someware on table row, checkbox is checked/unchecked
// and table row background is highlighted or not
$('body').on('click', '#instance-table tbody tr', function () {
var this_row = $(this);
var checkbox = this_row.find('input:checkbox');
if (event.target.type !== 'checkbox') {
if ( checkbox.is(':checked') == false ) {
checkbox.prop('checked', true);
this_row.css("background-color","#ccc");
//$('#instance-action').removeAttr('disabled');
CheckSelectAll();
} else {
checkbox.prop('checked', false);
this_row.css("background-color","#fff");
//$('#instance-action').attr('disabled', 'disabled');
CheckSelectAll();
}
}
});
function CheckSelectAll() {
var flag = true;
$('input:checkbox:not(#checkall)').each(function() {
if(this.checked == false)
flag = false;
//console.log(flag);
});
$("#checkall").attr('checked',flag);
}
但不知怎的,条纹表行没有突出显示,怎么样? 虽然代码已经在这里,但我也有一个问题,如果我手动检查每一行,它不会检查checkall复选框。当我手动检查checkall复选框时,取消选中每个复选框,然后再次手动检查每一行。我找不到错误。
答案 0 :(得分:8)
似乎bootstrap正在设置每个td背景颜色。因此,即使添加!important,将tr设置为背景颜色也不起作用。我通过为每个具有所需背景颜色的td添加一个类来解决它
<强>的CSS:强>
.selected { background-color: #ddd !important; }
<强>码强>
注意:代码是函数的一部分,它检查是否单击了行的第一个td内的复选框。
$(this).parent().parent().children('td').each(function() {
$(this).addClass("selected");
});
它可能不是一个简洁的解决方案,但它有效:)
答案 1 :(得分:2)
我对样式表的经验是你应该去行的单元格而不是行本身。
$(this).closest('tr td').css("background-color","#ffffff");
答案 2 :(得分:1)
$('#checkall').on("change", function() {
if(!$(this).is(":checked")) {
$(".checkbox").each( function() {
$(this).prop("checked" , false);
$(this).parent().parent().css({ "background" : "#fff" });
});
}
else {
$(".checkbox").each( function() {
$(this).prop("checked" , true);
$(this).parent().parent().css({ "background" : "#ccc" });
});
}
});
$(".checkbox").on("change", function() {
if ($(".checkbox:checked").length == $(".checkbox").length) {
$("#checkall").prop("checked" , true);
$(this).parent().parent().css({ "background" : "#ccc" });
}
else {
if($(this).is(":checked")) {
$("#checkall").prop("checked" , false);
$(this).parent().parent().css({ "background" : "#ccc" });
}
else {
$("#checkall").prop("checked" , false);
$(this).parent().parent().css({ "background" : "#fff" });
}
}
});