Need to make table which have numbers from 1 to 100, and it should be 10×10 cells. I make cells 10×10 but result fill every grid line from 1 to 10, how to make every line like that 1 to 10, 11 to 20 and to 100 like that ? Thank you for attention to my problem.
JavaScript
x
17
17
1
function generate_table() {
2
const tbl = document.createElement("table");
3
const tblBody = document.createElement("tbody");
4
for (let i = 1; i < 11; i++) {
5
const row = document.createElement("tr");
6
for (let j = 0; j < 10; j++) {
7
const cell = document.createElement("td");
8
const cellText = document.createTextNode(i);
9
cell.appendChild(cellText);
10
row.appendChild(cell);
11
}
12
tblBody.appendChild(row);
13
}
14
tbl.appendChild(tblBody);
15
document.body.appendChild(tbl);
16
tbl.setAttribute("border", "1");
17
}
JavaScript
1
3
1
<form action="#">
2
<input type="button" value="Generate a table" onclick="generate_table()">
3
</form>
Advertisement
Answer
JavaScript
1
17
17
1
function generate_table() {
2
const tbl = document.createElement("table");
3
const tblBody = document.createElement("tbody");
4
for (let y = 0; y < 10; y++) {
5
const row = document.createElement("tr");
6
for (let x = 0; x < 10; x++) {
7
const cell = document.createElement("td");
8
const cellText = document.createTextNode((x + 10 * y) + 1);
9
cell.appendChild(cellText);
10
row.appendChild(cell);
11
}
12
tblBody.appendChild(row);
13
}
14
tbl.appendChild(tblBody);
15
document.body.appendChild(tbl);
16
tbl.setAttribute("border", "1");
17
}
JavaScript
1
3
1
<form action="#">
2
<input type="button" value="Generate a table" onclick="generate_table()">
3
</form>