13 - Crear y agregar un nodo de tipo elemento (createElement - appendChild)
Problema:
Confeccionar un programa que cree un párrafo en forma dinámica y lo añada a un div.
pagina.html
estilos.css
funciones.js
Ejecución de la página
Prueba
function agregar() { let elemento = document.createElement('p') let texto = document.createTextNode('Hola Mundo') elemento.appendChild(texto) let obj = document.getElementById('parrafos') obj.appendChild(elemento) }
No tiene disponible el navegador la capacidad de iframe
Retornar