“document.body.style.background” Código de respuesta

JavaScript Cambiar color de fondo

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

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

document.body.style.background

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

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código