我在表格中有一个复选框,当你点击它时,它会相应地改变背景颜色,就像这样......
$("#table tr td :checkbox").bind("click change", function() {
$this = $(this); // cache the jquery object
if($this.is(':checked')) { $this.closest('tr').css('background-color', 'lightyellow'); }
else { $this.closest('tr').css('background-color', '#fff'); }
});
这工作得很好,但是,我想我想做得更好,所以你点击表格行的任何地方,它都会选中该框并突出显示该行。
我尝试使用此代码,但不幸的是它不起作用:
$("table tr").bind("click", function() {
$(this).parents("tr").find(":checkbox").attr('checked');
});
这是 HTML 代码(删除了过多的内容以提高可读性...
<td>Name</td>
<td>Description</td>
<td><input type="checkbox"></td>
任何帮助将不胜感激,谢谢!