2013-06-12 110 views
0

如何使用rowindex獲取子節點的值,該值是動態創建的?獲取行索引子節點的值

我試着用下面的代碼,但錯誤出現"Unable to get the value of the property childnodeID"

var table = document.getElementById('tableID'); 
var Row = table.rows['childnodeID']; //error 
Row.cells[0].innerText = i; 
+1

'「childnodeID''不該」 t是一個字符串;它應該是一個數字。 –

回答

1

childnodeID必須是number.Index永遠不會成爲一個string.It必須是數字

+0

'childnodeID'是動態創建的子節點的ID。 –

+0

然後找到那個孩子的索引,然後使用它 – PSR

+0

'var Row1 = table.rows [5];'有錯誤 - 無法獲得5的值,而使用table.rows,但我用table.childNode,錯誤出現在下一行'Row.cells [0] .innerText = i;'因爲單元格值未定義。 –