“Cor de fundo do estilo JavaScript” Respostas de código

Cor de fundo do 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 Alterar a cor de fundo

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

JavaScript Alterar a cor de fundo

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

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

Como alterar a cor de fundo usando JS

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

rabbit.sol

Como alterar a cor de fundo do HTML em 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

Respostas semelhantes a “Cor de fundo do estilo JavaScript”

Perguntas semelhantes a “Cor de fundo do estilo JavaScript”

Procure respostas de código populares por idioma

Procurar outros idiomas de código