HTML | Propiedad tHead de la tabla DOM

La propiedad Table tHead se utiliza para devolver una referencia al elemento <thead> de una tabla. 
El elemento <thead> se utiliza para agrupar el contenido del encabezado en una tabla HTML. 
Devuelve NULL si el elemento <thead> no está definido .
Sintaxis 
 

tableObject.tHead

Valor devuelto: una referencia al elemento <thead> de la tabla, o nulo si no está definido

El siguiente programa ilustra la propiedad Table THead(): 
Ejemplo: alertar al HTML interno del elemento <thead>. 
 

html

<!DOCTYPE html>
<html>
 
<head>
    <title>Table tHead Property in HTML
  </title>
    <style>
        table,
        td {
            border: 1px solid green;
        }
         
        h1 {
            color: green;
        }
         
        h2 {
            font-family: Impact;
        }
         
        body {
            text-align: center;
        }
    </style>
</head>
 
<body>
 
    <h1>GeeksforGeeks</h1>
    <h2>Table tHead Property</h2>
 
     
<p>To return the innerHTML of the thead
      element for the table, double-click the
      "Return Header" button.</p>
 
 
    <table id="Courses" align="center">
        <thead>
            <tr>
                <th>Subject</th>
                <th>Courses</th>
            </tr>
        </thead>
        <tr>
            <td>Java</td>
            <td>Fork Java</td>
        </tr>
        <tr>
            <td>Python</td>
            <td>Fork Python</td>
        </tr>
        <tr>
            <td>Placements</td>
            <td>Sudo Placement</td>
        </tr>
 
    </table>
    <br>
 
    <button ondblclick="thead()">
      Return Header
  </button>
 
    <script>
        function thead() {
           
            // returning reference of tHead
            // using alert.
            alert(document.getElementById(
              "Courses").tHead.innerHTML);
        }
    </script>
 
</body>
 
</html>

Salida:
Antes de hacer clic en el botón: 
 

Después de hacer clic en el botón: 
 

Navegadores compatibles: 
 

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

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 *