JavaScript 怎么使用数组实现三行三列的表格?

1.通过Javascript,使用数组和循环创建一个3行3列的表格?

2.经过查找答案,找到下面的:

var a=[[(3)],[(3)],[(3)]];


console.log(a);

var table=document.createElement("table");

    table.cellSpacing=0;

for(var i=0;i<a.length;i++){

    table.insertRow(i);

        for(j=0;j<a[i].length;j++){

            table.rows[i].insertCell(j);

            table.rows[i].cells[j].innerText=a[i][j];

        }

}

document.body.appendChild(table);

3.最后运行没有得到正确的结果。

入门小白一枚,求助于各位大神。


BIG阳
浏览 1179回答 1
1回答

慕姐4208626

var table=document.createElement("table");table.border="1"for(var i=0;i<3;i++){&nbsp; &nbsp; table.insertRow(i);&nbsp; &nbsp; &nbsp; &nbsp; for(j=0;j<3;j++){&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; table.rows[i].insertCell(j);&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; table.rows[i].cells[j].innerText=(i+1) + '' + (j+1);&nbsp; &nbsp; &nbsp; &nbsp; }}document.body.appendChild(table);
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript