Javascript将嵌套数组提供到表中

时间:2014-02-13 05:41:42

标签: javascript html

我正在尝试将嵌套的整数数组提供给数据表(表格是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]

0 个答案:

没有答案