选中复选框后,如何将类添加到表中,然后取消选中后删除。我有以下脚本
.opacity40{
opacity:0.4;
filter:alpha(opacity=40);
}
<input type="checkbox" name="checkbox" id="mycheckbox" />
<script>
$("#tableDist").addClass("opacity40");
$("input#mycheckbox").click(function() {
if($(this).is(":checked") {
$("#tableDist").rmoveClass("opacity40");
}
else {
$("#tableDist").addClass("opacity40");
}
})
</script>
<table id="tableDist">
</table>