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.最后运行没有得到正确的结果。入门小白一枚,求助于各位大神。
1 回答
慕姐4208626
TA贡献1852条经验 获得超7个赞
var table=document.createElement("table");
table.border="1"
for(var i=0;i<3;i++){
table.insertRow(i);
for(j=0;j<3;j++){
table.rows[i].insertCell(j);
table.rows[i].cells[j].innerText=(i+1) + '' + (j+1);
}
}
document.body.appendChild(table);
添加回答
举报
0/150
提交
取消