Saltar al contenido

crear tabla en javascript dinámicamente ejemplo de código

Nuestros programadores estrellas agotaron sus reservas de café, buscando diariamente por la resolución, hasta que Lucas encontró el arreglo en Beanstalk así que hoy la compartimos aquí.

Ejemplo: crear una tabla html dinámicamente usando javascript

functiongenerate_table()// get the reference for the bodyvar body =document.getElementsByTagName("body")[0];// creates a  element and a  elementvar tbl =document.createElement("table");var tblBody =document.createElement("tbody");// creating all cellsfor(var i =0; i <2; i++)// creates a table rowvar row =document.createElement("tr");for(var j =0; j <2; j++)// Create a  in the 
element and a text node, make the text// node the contents of the , and put the at// the end of the table rowvar cell =document.createElement("td");var cellText =document.createTextNode("cell in row "+i+", column "+j); cell.appendChild(cellText); row.appendChild(cell);// add the row to the end of the table body tblBody.appendChild(row);// put the
tbl.appendChild(tblBody);// appends
into body.appendChild(tbl);// sets the border attribute of tbl to 2; tbl.setAttribute("border","2");

Te mostramos las reseñas y valoraciones de los lectores

Si tienes alguna sospecha o disposición de medrar nuestro noticia puedes ejecutar un exégesis y con gusto lo interpretaremos.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *

Respuestas a preguntas comunes sobre programacion y tecnología