web-dev-qa-db-ja.com

単純な配列からJavaScriptを使用して動的なHTMLテーブルを作成する

数値のみを含む配列から単純なHTMLテーブルを作成するJavaScriptを記述したいと思います。

var array = [1,2,3,4,5,6,7,8,9,10];

テーブルは次のようになります。

1 2 3 4 5
6 7 8 9 10

ただし、JavaScriptコードは配列のサイズに応じて動的である必要があります(ただし、常に5倍)。

私はたくさんのことを試しましたが、思い通りに動作しません。これを達成する最も簡単な方法は何でしょうか?

これは私の試みの1つです。

var tableStart = "<table border>";
for (i = 0; i < arraySize/5; i++){
  var tableMiddle = "<tr><td>1</td><td>2</td><td>3</td><td>4</td><td>5</td></tr>"
  if (arraySize/5 >= 2) {
    tableMiddle = tableMiddle + tableMiddle;
  }
};
var tableEnd = "</table>";
var table = tableStart.concat(tableMiddle, tableEnd);

と同様

var result = "<table border=1>";
for(var i=0; i<2; i++) {
    result += "<tr>";
    for(var j=0; j<array.length; j++){
        result += "<td>"+array[i]+"</td>";
    }
    result += "</tr>";
}
result += "</table>";

これは、配列の2つの値が何度も表示されることになります。

4
Alexander Hoerl

5の余りがゼロの場合は、配列を反復して新しい行を作成できます。

var array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
    tr;

array.forEach((v, i) => {
    var td = document.createElement('td');
    
    if (!(i % 5)) {
        tr = document.createElement('tr');
        document.getElementById('table0').appendChild(tr);
    }
    td.appendChild(document.createTextNode(v));
    tr.appendChild(td);
});
<table id="table0"></table>
10
Nina Scholz
var array = [1,2,3,4,5,6,7,8,9,10];

var result = "<table border=1>";
result += "<tr>";
for (var j = 0; j < array.length; j++) {
  result += "<td>" + array[j] + "</td>";
  if ((j + 1) % 5 == 0) {
    result += "</tr><tr>";
  }
}
result += "</tr>";
result += "</table>";

document.body.innerHTML = result;

うまくいけば試してみてください

0
Taylor Rahul

このようなものを試してみませんか?コード内の説明。また、テストされていないため、調整が必要になる場合があります。

var array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
// start the table
var table = document.createElement("table");
var currentRow;
for (var i = 0; i < array.length; i++) {
  // put items in.
  var item = document.createElement("td");
  item.innerHTML = array[i];
  // if we are at the 
  if (i % 5 === 0) {
    // if it's not the first time you're creating row - first put the prev row into the table, then reassign it to a new table row.
    if (typeof currentRow !== 'undefined') table.appendChild(currentRow);
  currentRow.appendChild(item);

    currentRow = document.createElement("tr");
  }

}
// put the table into the body element, for example.
document.getElementsByTagName('body')[0].appendChild(table);
0
itamar