“color de fondo de estilo javascript” Código de respuesta

color de fondo de estilo javascript

 // change background color for specific id ..
function changebackground(){
	document.getElementById('id').style.backgroundColor = 'green' ; 
}
// change background color for whole body..
function changebackground(){
	document.body.style.backgroundColor = 'green';
}
 
dr3am_warri0r

JavaScript Cambiar color de fondo

document.body.style.backgroundColor = "yellow";
Black Bat

JavaScript Cambiar color de fondo

function changeBackground(color) {
   document.body.style.background = color;
}

window.addEventListener("load",function() { changeBackground('red') });
Mobile Star

Cómo cambiar el color de fondo usando JS

var warning = document.getElementById("warning");
  warning.style.background-color = "red";

rabbit.sol

Cómo cambiar el color de fondo de HTML en JavaScript

document.querySelector('html').style.backgroundColor = 'red';
shahsawood

document.body.style.background

// Change the background color to red
document.body.style.backgroundColor = "red"; 
Inquisitive Iguana

Respuestas similares a “color de fondo de estilo javascript”

Preguntas similares a “color de fondo de estilo javascript”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código