一个新手问题,真的。
假设我有一个这样的 html 表:
<div id="div1">
<table id="table1" border="1">
<tr>
<th bgcolor="#eee"><strong>ID</strong></th>
<th bgcolor="#eee"><strong>Price</strong></th>
</tr>
<tr>
<td id='id1'>1111</td>
<td id='id2'>2222</td>
</tr>
</table>
</div>
现在我正在使用 Jquery 从服务器获取 json 格式的数据,如下所示:
id1,19.99
id2,29.99
id3,39.00
我想要实现的是:查看数据,如果表中已经存在id,则更新单元格值。如果表中不存在 id,则添加一个新行。我如何在 JQuery 中做到这一点?我刚开始学习JQuery。现在我可以使用 ajax 调用来获取数据,但不知道如何更新表。任何帮助表示赞赏。