“JS crea elemento con atributos” Código de respuesta

JavaScript Crear elemento con atributos

var element = document.createElement("span");
element.setAttribute("style", "color: red");
document.body.appendChild(element);
TC5550

JS Crear elemento

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

Documento Crear elemento

document.body.onload = addElement;

function addElement () { 
  // create a new div element 
  var newDiv = document.createElement("div"); 
  // and give it some content 
  var newContent = document.createTextNode("Hi there and greetings!"); 
  // add the text node to the newly created div
  newDiv.appendChild(newContent);  

  // add the newly created element and its content into the DOM 
  var currentDiv = document.getElementById("div1"); 
  document.body.insertBefore(newDiv, currentDiv); 
}
Difficult Dragonfly

JS crea elemento con atributos

const element = document.createElement("h1"); /* First need to make element to edit it! */
element.setAttribute("style", text-align:center"); /* First use Property then next its value
document.body.appendChild(element); /* Used to show the element in body tag cuz other tags doesn't have display, see it in DevTools! */
Code4Fun

JS crea elemento con atributos

/* Oh Sorry, in the previous answer is posted by me but in line 2, I've a problem, see this fixed: */
const element = document.createElement("h1"); /* First need to make element to edit it! */
element.setAttribute("style", /* This */ "text-align:center"); /* Here have a problem, I haven't included " in here*/
document.body.appendChild(element); /* Used to show the element in body tag cuz other tags doesn't have display, see it in DevTools! */
Code4Fun

Respuestas similares a “JS crea elemento con atributos”

Preguntas similares a “JS crea elemento con atributos”

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

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código