“document.body.style.background” Réponses codées

JavaScript Change Couleur d'arrière-plan

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

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code