CSSでは、チェックの有無background-color
で全体のを変更することはできますか?<tr>
<input type="checkbox">
例
<table>
<!-- This is the row I want to change the background of... -->
<tr>
<td>
<!-- ...when this is checked -->
<input type="checkbox" name="cb1" id="cb1" />
</td>
<td>Something 1</td>
</tr>
</table>