Maison > interface Web > js tutoriel > le corps du texte

Comment puis-je changer la couleur d'arrière-plan d'une page Web à l'aide de JavaScript ?

DDD
Libérer: 2024-11-14 18:39:02
original
633 Les gens l'ont consulté

How can I change the background color of a webpage using JavaScript?

Altering the Background Color with JavaScript

Changing the background color of a webpage with JavaScript is a straightforward task. Here's how to do it:

Solution:

  1. Access the document body: Utilize the document.body property.
  2. Modify the background style: Set the background property of document.body.style. For instance, to set it to red, use document.body.style.background = 'red'.

Here's a sample function to achieve this:

function changeBackground(color) {
   document.body.style.background = color;
}
Copier après la connexion

Toinvoke the function, add the following code to the page's onload event handler:

window.addEventListener("load",function() { changeBackground('red') });
Copier après la connexion

Note:

Consider the page's structure. If the background is set to a specific DIV container, you need to modify its background color instead of the document body.

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal