获取具有行索引的子节点的值

时间:2013-06-12 07:20:05

标签: javascript

如何使用动态创建的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 个答案:

答案 0 :(得分:1)

childnodeID必须是数字。索引永远不是字符串。它必须是数字