这是我的表格格式。
<table id="table1">
<tr id="row_1">
<th>Some Heading</th>
<td class="t1"></td>
<td class="t2"></td>
<td class="t3"></td>
<td class="t4"></td>
</tr>
<tr id="row_2">
<th>Some Heading</th>
<td class="t1"></td>
<td class="t2"></td>
<td class="t3"></td>
<td class="t4"></td>
</tr>
etc...
</table>
如何使用 jQuery 更新单独的表格单元格 (td) 的内容?如果我想更新#row_1 cell 1 或#row_2 cel 4 等的内容,更好的表达方式是如何编写它?
我有另一个表,我可以毫无问题地更新数据,但它也简单得多。它每行只有一个表格单元格需要更新内容。我用这个做到了。
$('#val_' + i).html("stuff I put in it");
每个单元格都有一个唯一的 id - #val_ + 一些标识它的数字,因此我可以轻松地循环遍历它,但是稍微复杂的表格给我带来了麻烦。