我在grails项目中有三个td for cost字段,我在个别td中添加了三个成本,如300,400,500,我可以编辑每个td,并通过提交为其添加其他值,该值将添加到数据库,我的问题是,我同时点击了三个td并编辑了第一个值,例如300到600并点击了提交按钮,但编辑后的值600更新到所有其他td,如400到600和500到600 ,我需要的是一个javascript函数,用于在点击版本时禁用其他td ...提前感谢
<tbody>
<g:each in="${labServices}" status="i" var="labServiceInstance">
<tr class="${(i % 2) == 0 ? 'even' : 'odd'}">
<td>
${fieldValue(bean: labServiceInstance, field: "testUnit")}
</td>
<td id="${labServiceInstance.id}" >
${fieldValue(bean: labServiceInstance, field: "cost")}
</td>
</tr>
</g:each>
</tbody>