HTML | Método createTHead() de la tabla DOM

El método Table createTHead() se usa para crear un elemento <thead> vacío y agregarlo a la tabla. No crea un nuevo elemento <thead> si ya existe un elemento <thead> . En tal caso, el método createThead() devuelve el existente. 
El elemento <thead> debe tener una o más de una etiqueta <tr> dentro.
Sintaxis 
 

tableObject.createTHead()

Valor devuelto: Devuelve un elemento <thead> nuevo o existente

El siguiente programa ilustra el método Table createTHead(): 
Ejemplo: Creación de un elemento <thead>. 
 

html

<!DOCTYPE html>
<html>
 
<head>
    <title>
      Table createTHead() Method 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 createTHead() Method</h2>
 
     
<p>To create a header for a table,
      double-click the "Add Header" button.</p>
 
 
    <table id="Courses"
           align="center">
        <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="table_head()">
      Add Header
  </button>
 
    <script>
        function table_head() {
           
           
            var MyTable =
                document.getElementById("Courses");
           
            // Create heading of table.
            var MyHeader = MyTable.createTHead();
            var MyRow = MyHeader.insertRow(0);
            var MyCell = MyRow.insertCell(0);
            MyCell.innerHTML =
              "<strong>Available On GeeksforGeeks.</strong>";
        }
    </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 *