我有一个简单的 javascript 问题。我有一个复选框和一个输入框。
当用户在输入框(onkeydown)中输入文本时,我希望它检查行中的相应复选框。
我的复选框都为 array 共享相同的名称checkbox[]
。
我的简化语法是:
<table>
<?php if(isset($records)) : foreach ($records as $row) : ?>
<tr>
<td>
<input type=checkbox name="editcustomer[]" id="editcustomer[]" value="<?php echo $row->id ?>">
</td>
<td>
<input type="text" name="customer_name_<?php echo $row->id ?>" id="customer_name_<?php echo $row->id ?>" value="<?php echo $row->customer_name ; ?>" onclick="document.getElementById('editcustomer<?php echo $row->id ?>').checked = true;">
</td>
<tr>
<?php endforeach ; ?>
</table>
由于复选框的名称不是唯一的,只有它的值我如何告诉javascript要检查哪个复选框?
<input type="text" name="customer_name_<?php echo $row->id ?>" id="customer_name_<?php echo $row->id ?>" value="<?php echo $row->customer_name ; ?>" onclick="document.getElementById('editcustomer<?php echo $row->id ?>').checked = true;">
一如既往的帮助表示赞赏。
谢谢