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;
4

1 回答 1

1

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

于 2013-06-12T07:20:49.400 回答