-1
左から右へ、上から下へと表のセルにarrコンテンツをダウンロードするにはHw?私のコードで何が間違っていますか?どのように問題を解決するには?前もって感謝します。テーブルを作ってJavaScriptを使ってコンテンツを作る
<button onclick="myFunction()></button>
<table id="myTable" border='1px'>
<tr>
<th>N</th>
<th>Name</th>
<th>Surname</th>
<th>tel.</th>
<th>email</th>
</tr>
</table>
var arr=[[1,2,3,4,'a'],[5,6,7,8,'b'],[9,10,11,12,'c']];
function myFunction() {
createTable();
}
function createTable(){
var i,j;
var table = document.getElementById("myTable");
for(i=0; i<arr.length; i++) {
var row = table.insertRow(1);
for(j=0,k=0; j<5, k<arr[i].length;j++, k++) {
var cell = row.insertCell(0);
cell.innerHTML = arr[i][k];
}
}
}