“JS nuevo elemento” Código de respuesta

JS Crear elemento

let myElm = document.createElement("p");	// Create a new element

myElm.innerText = 'test';		// Change the text of the element
myElm.style.color = 'red';		// Change the text color of the element

document.body.appendChild(myElm);	// Add the object to the DOM
garzj

JS Crear elemento

var newDiv = document.createElement("div");
document.body.appendChild(newDiv);
just-saved-you-a-stackoverflow-visit

JS nuevo elemento

var x = document.createElement("tag");
x.style.color = "red";
document.body.appendChild(x);
Code Cat

Respuestas similares a “JS nuevo elemento”

Preguntas similares a “JS nuevo elemento”

Más respuestas relacionadas con “JS nuevo elemento” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código