给定可变数量的数据,我想创建一个每行具有固定列数的表。例如,我可能只需要每行四列:
<table>
<tr>
<th>COLUMN_1</th> <th>COLUMN_2</th> <th>COLUMN_3</th> <th>COLUMN_4</th>
</tr>
<tr>
for(-some code here-) {
<td>-some output from the loop-</td>
}
</tr>
</table>
但是如您所见,如果数据由 10 个元素组成,表格行将超过我的四列。
如何输出数据以使列数保持不变并根据需要创建新行?