El método Table deleteTFoot() se utiliza para eliminar un elemento <tfoot> y su contenido de una tabla.
Solo se puede usar si ya existe un elemento <tfoot> .
Sintaxis
tableObject.deleteTFoot()
El siguiente programa ilustra el método Table deleteTFoot():
Ejemplo-1: Eliminación de un elemento <tfoot> .
<!DOCTYPE html> <html> <head> <title> Table deleteTFoot() 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 deleteTFoot() Method</h2> <p>To create a footer for the table, double-click the "Add Footer" button.</p> <p>To delete the footer from the table, double-click the "Delete 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="Add_foot()"> Add Footer </button> <button ondblclick="Delete_foot()"> Delete Footer </button> <script> function Add_foot() { var MyTable = document.getElementById("Courses"); var MyFooter = MyTable.createTFoot(); var MyRow = MyFooter.insertRow(0); var MyCell = MyRow.insertCell(0); MyCell.innerHTML = "<b>Available On GeeksforGeeks.</b>"; } function Delete_foot() { // Delete footer. document.getElementById( "Courses").deleteTFoot(); } </script> </body> </html>
Producción:
Antes de hacer clic en el botón «Agregar pie de página»:
Después de hacer clic en el botón «Agregar pie de página»:
Después de hacer clic en el botón «Eliminar pie de página»:
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