“Hintergrundfarbe im JavaScript -Stil im Stil” Code-Antworten

Hintergrundfarbe im JavaScript -Stil im Stil

 // 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 ändern die Hintergrundfarbe

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

JavaScript ändern die Hintergrundfarbe

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

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

So ändern Sie die Hintergrundfarbe mit JS

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

rabbit.sol

So ändern Sie die Hintergrundfarbe von HTML in 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

Ähnliche Antworten wie “Hintergrundfarbe im JavaScript -Stil im Stil”

Fragen ähnlich wie “Hintergrundfarbe im JavaScript -Stil im Stil”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen