API web HTMLBodyElement.bgColor propiedad

La propiedad HTML BodyElement.bgColor se usa para devolver un DOMString

Sintaxis:

BodyElement.bgColor

Valor devuelto: esta propiedad devuelve un DOMString

HTML

<!DOCTYPE html> 
<html> 
  
<!-- body tag starts here -->
<body bgColor="green"> 
      
    <center> 
        <h1>GeeksforGeeks</h1> 
        <h2>HTMLBodyElement.bgColor Property</h2> 
          
    </center>  
    <script type="text/javascript">
        alert(document.body.bgColor);
    </script>
</body>
  
</html>

Producción:

Ejemplo 2:

HTML

<!DOCTYPE html> 
<html> 
  
<!-- body tag starts here -->
<body bgColor="yellow">
      
    <center> 
        <h1>GeeksforGeeks</h1> 
        <h2>HTMLBodyElement.bgColor Property</h2> 
          
    </center>  
    <script type="text/javascript">
        console.log(document.body.bgColor);
    </script>
</body>
  
</html>

Producción:

Navegadores compatibles:

  • Google Chrome
  • explorador de Internet
  • Firefox
  • safari de manzana
  • Ópera

Publicación traducida automáticamente

Artículo escrito por taran910 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *