La propiedad Table tFoot se utiliza para devolver una referencia al elemento <tfoot> de una tabla. El elemento <tfoot> se utiliza para agrupar el contenido del pie de página en una tabla HTML.
Devuelve NULL si el elemento <tfoot> no está definido .
Sintaxis
tableObject.tFoot
Valor devuelto: una referencia al elemento <tfoot> de la tabla, o nulo si no está definido
El siguiente programa ilustra la propiedad de la tabla TFoot():
Ejemplo: alertar al HTML interno del elemento <tfoot> .
html
<!DOCTYPE html> <html> <head> <title>Table tFoot 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 tFoot Property</h2> <p>To return the innerHTML of the tfoot element for the table, double-click the "Return Footer" 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> <tfoot> <tr> <td>Sample</td> <td>Footer</td> </tr> </tfoot> </table> <br> <button ondblclick="tfoot()"> Return Footer </button> <script> function tfoot() { // returning reference of tFoot // using alert alert(document.getElementById( "Courses").tFoot.innerHTML); } </script> </body> </html>
Salida:
Antes de hacer clic en el botón:
Después de hacer clic en el botón:
Navegadores compatibles:
- Google Chrome 6.0
- Internet Explorer 10.0
- Firefox 16.0
- Apple Safari 5.0
- Ópera 10.6 Ó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