2015-01-21 59 views
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> 
+0

上下文中的「i」是什麼? – 2015-01-21 10:58:13

回答

0

在您的HTML代碼中將failuresTable更改爲failuresTables

+0

嗨,那不工作。我不需要在任何地方指定,因爲我的表有多個標題/列。 – userMod2 2015-01-21 10:46:11

+0

不能相信我做到了!謝謝 – userMod2 2015-01-21 11:02:16

+0

也想問我是否有for循環如何強制新的,因爲目前它只是將結果添加到結尾 – userMod2 2015-01-21 11:02:57

相關問題