我正在尝试将嵌套的整数数组提供给数据表(表格是5行X 6列)。我知道我必须使用firstChild
属性,但我所拥有的不起作用。
function fillTable()
{
var mytable = document.getElementById("myTable");
for(var i=1) i<6; i++){
for(j=1; j<7; j++){
mytable.rows[i].cells[j].firstChild.data = myArray[i-1][j-1];
}
}
}
请注意,嵌套数组为[0-4] [0-5]