如何仅禁用表格行中的一个复选框?我在 phtml 文件中有我的 for 条件。我的 html 有一个td
复选框,但如果我单击一个复选框,它会禁用表中的所有复选框。下面是我的带有复选框的 for 循环。
<?php
foreach($this->rows as $record)
{
echo "<tr>";
echo "<td >". $record['firstname'] . "</td>";
echo "<td>".$record['advicetoowners'] . "</td>";
echo"<td>".$record['customdata'] . " <br /> ".$record['reservation'."</td>";
?>
<td class='stylecontent'width='2' >
<input type="checkbox" name="seen" value="" class='chkAll'/>
</td>
<?php
}
?>
我的 jQuery 是:
$('.chkAll').change(function() {
// This disables all the check box in a table.How to make it to disable only one
$('input:checkbox').attr('disabled', this.checked);
});