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