如何使用动态创建的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;
答案 0 :(得分:1)
childnodeID
必须是数字。索引永远不是字符串。它必须是数字