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

El método Table createTFoot() se usa para crear un elemento <tfoot> vacío y agregarlo a la tabla. No crea un nuevo elemento <tfoot> si ya existe un elemento <tfoot> . En tal caso, el método createTFoot() devuelve el existente. 
El elemento <tfoot> debe tener múltiples etiquetas <tr> dentro.
Sintaxis 
 

tableObject.createTFoot()

Valor devuelto: Devuelve el elemento <tfoot> recién creado o existente.

El siguiente programa ilustra el método Table createTFoot(): 
Ejemplo-1: Creación de un elemento <tfoot>. 
 

html

<!DOCTYPE html>
<html>
 
<head>
    <title>Table createTFoot() 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 createTFoot() Method</h2>
 
     
<p>To create a footer for a table,
      double-click the "Add Footer" 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="foot()">
      Add Footer
  </button>
 
    <script>
        function foot() {
            var MyTable = document.getElementById("Courses");
           
            // Creating footer.
            var MyFooter = MyTable.createTFoot();
            var MyRow = MyFooter.insertRow(0);
            var MyCell = MyRow.insertCell(0);
            MyCell.innerHTML =
              "<b>Available On GeeksforGeeks.</b>";
        }
    </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 *