我被要求将表格行单击上的复选框标记为已选中,下面的脚本正在运行,但现在当我直接单击复选框时,它不起作用,只有当我单击表格行时才有效。
我有这个html:
<tr class="linha_tela" id="4">
<td>Profile</td>
<td>Clientes</td>
<td>
<input type="checkbox" checked="checked" id="controller_4" name="controllers[]" value="4" />
</td>
</tr>
这是我的脚本:
$('.linha_tela').click(function(){
var checkbox = $(this).find(':checkbox');
checkbox.attr('checked', !checkbox.attr('checked'));
});
谢谢