Ejemplo
Retirar un <tfoot> elemento de una tabla:
document.getElementById("myTable").deleteTFoot();
Inténtalo tú mismo " Definición y Uso
El deleteTFoot() método elimina la <tfoot> elemento (and its content) de la mesa.
Tip: Para crear un nuevo <tfoot> elemento de una tabla, utilice el createTFoot() método.
Soporte del navegador
Método | |||||
---|---|---|---|---|---|
deleteTFoot() | Sí | Sí | Sí | Sí | Sí |
Sintaxis
tableObject .deleteTFoot()
parámetros
Ninguna |
Detalles técnicos
Valor de retorno: | Sin valor de retorno |
---|
Más ejemplos
Ejemplo
Crear y borrar un <tfoot> elemento:
function myCreateFunction() {
var table =
document.getElementById("myTable");
var footer =
table.createTFoot();
var row = footer.insertRow(0);
var cell = row.insertCell(0);
cell.innerHTML =
"<b>This is a table footer</b>";
}
function myDeleteFunction() {
document.getElementById("myTable").deleteTFoot();
}
Inténtalo tú mismo " Páginas relacionadas
Referencia HTML: HTML <tfoot> etiqueta
<Tabla de objetos