“JavaScript Agregar al párrafo” Código de respuesta

Agregar elemento al cuerpo JavaScript

var elem = document.createElement('div');
elem.style.cssText = 'position:absolute;width:100%;height:100%;opacity:0.3;z-index:100;background:#000';
document.body.appendChild(elem);
Cooperative Cassowary

JavaScript Agregar al párrafo

// In the JS script

var parElement = document.getElementById("myPar");
var textToAdd = document.createTextNode("Text to be added");
parElement.appendChild(textToAdd);

//In the HTML file

<p id="myPar"></p>
Joyous Jellyfish

JS agregue más texto al elemento

document.getElementById("p").textContent += " This is the text from javascript.";

<p id ="p">This is the text from HTML.</p>
Prophitis

Respuestas similares a “JavaScript Agregar al párrafo”

Preguntas similares a “JavaScript Agregar al párrafo”

Más respuestas relacionadas con “JavaScript Agregar al párrafo” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código