HTML | Propiedad de cabeza DOM

La propiedad head en HTML se usa para devolver la primera aparición del encabezado si hay varios encabezados en el documento. Devuelve la referencia del objeto cabeza, que representa el elemento <cabeza>
Sintaxis: 
 

document.head

Valor devuelto:- Devuelve el elemento <head> del objeto head.

El siguiente programa ilustra la propiedad document.head en HTML:
Ejemplo: 
 

html

<!DOCTYPE html>
<html>
    <head id="Article Head">
        <title>
            DOM document.head() Property in HTML
        </title>
        <style>
            h1 {
                color:green;
            }
            h2 {
                font-family: Impact;
            }
            body {
                text-align:center;
            }
        </style>
    </head>
    <body>
        <h1>GeeksforGeeks</h1>
        <h2>DOM document.head Property</h2>
         
<p>
         For displaying the Head of the document,
         double click the "View Head" button:
        </p>
 
        <button ondblclick="myHead()">
         View Head
        </button>
        <p id="head"></p>
 
        <script>
            function myHead() {
                var gfg = document.head.id;
                document.getElementById("head").innerHTML = gfg;
            }
        </script>
    </body>
</html>                   

Producción: 
 

Navegadores compatibles: los navegadores compatibles con la propiedad DOM head se enumeran a continuación: 
 

  • Google Chrome 4.0
  • Apple Safari 5.0
  • Firefox 4.0
  • Ópera 11.0
  • Internet Explorer 9.0

Publicación traducida automáticamente

Artículo escrito por Shubrodeep Banerjee 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 *