我有一个 HTML 表格,里面有一些元素:
<table width='700px' id="employeetable" class="tablesorter" style='table-layout:fixed;'>
<thead>
<tr>
<th>Select to Edit</th>
<th>Group Id</th>
<th>User Id</th>
<th>Object</th>
<th>Read</th>
<th>Update</th>
<th>Insert</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
{foreach from=$privileges item=privilegesItem name=foo}
<tr>
<td align="center"><input id='{$smarty.foreach.foo.iteration}' type="radio" name="SelcetedObject" value= "{$privilegesItem['Object']}"/> </td>
<td align="center">{$privilegesItem['group_id']}</td>
<td align="center">{$privilegesItem['user_id']}</td>
<td align="center">{$privilegesItem['Object']}</td>
<td id='read_{$smarty.foreach.foo.iteration}' align="center">{$privilegesItem['Read']} </td>
<td id='update_{$smarty.foreach.foo.iteration}' align="center">{$privilegesItem['Update']}</td>
<td id='insert_{$smarty.foreach.foo.iteration}' align="center">{$privilegesItem['Insert']}</td>
<td id='delete_{$smarty.foreach.foo.iteration}' align="center">{$privilegesItem['Delete']}</td>
</tr>
{/foreach}
</tbody>
我现在可以删除一个元素
$("input[type='radio']:checked").each(function () {
var id = this.id;
var id_read = '#read_'+id;
$(id_read).remove();
但我想编辑表格中的元素而不是删除它。编辑:例如,如果我的 Read 项目的值为 10,我想将其更改为 2,或者我不想使用简单的值,而是想用复选框替换它。
请问我该怎么做?使用 .add ?