真是一個新手問題。JQuery更新表格單元格並添加新表格行
假設我有一個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調用來獲取數據,但不知道如何更新表。任何幫助表示讚賞。
後你已經擁有的代碼。 – Thomas