Te sugerimos que pruebes esta resolución en un entorno controlado antes de enviarlo a producción, un saludo.
Ejemplo: Javascript recorriendo la tabla
var table =document.getElementById("myTable");for(let i in table.rows)let row = table.rows[i]//iterate through rows//rows would be accessed using the "row" variable assigned in the for loopfor(let j in row.cells)let col = row.cells[j]//iterate through columns//columns would be accessed using the "col" variable assigned in the for loop
Reseñas y calificaciones del artículo
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)