0
我有一個表如下。我從不止API獲取JSON。當我得到數據時,我需要在表格中插入一個新行。新行和特定單元
我見過我可以使用像 - 我會希望在第二個單元格中輸入(TR ID爲秒):
$('#failuresTable > tbody > tr').eq(i-1).after(jsonData.reports[0]);
但它不工作。
任何想法?
<table id="failuresTables">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Reason</th>
<th>Header</th>
<th>Screen</th>
</tr>
</thead>
<tbody>
<tr>
<td id="first"></td>
<td id="second"></td>
<td id="third"></td>
<td id="fourth"></td>
</tr>
</tbody>
</table>
上下文中的「i」是什麼? – 2015-01-21 10:58:13