This commit is contained in:
2022-05-30 16:53:05 +02:00
parent c3e54adb79
commit e62cd8158a

View File

@@ -144,16 +144,17 @@ function matrixKiiras(){
matrix1_container.appendChild(sor); matrix1_container.appendChild(sor);
} }
}
for (let i = 0; i < matrix2.length; i++) {
/* let sor = document.createElement("div");
1x2 sor.setAttribute("class", "sor");
6,6 for (let j = 0; j < matrix2[i].length; j++) {
let elem = document.createElement("div");
2x3 elem.setAttribute("class", "elem");
6,6,6 let text = document.createTextNode(matrix2[i][j]);
6,6,6 elem.appendChild(text);
sor.appendChild(elem);
}
*/ matrix2_container.appendChild(sor);
}
}