0

如何仅禁用表格行中的一个复选框?我在 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); 
}); 
4

2 回答 2

1

将其更改为

 $('.chkAll').change(function() {
        $('input:checkbox').attr('disabled', this.checked); 
 }); 

这个

 $('.chkAll').change(function() {
        $(this).attr('disabled', this.checked); 
 }); 
于 2012-09-13T12:57:15.420 回答
0
$('.chkAll').change(function() {
        $(this).attr('disabled', this.checked); 
    }); 
于 2012-09-13T12:56:45.340 回答