tutoriais mais recente desenvolvimento web
 

Mesa deleteTHead() Method

<Tabela objecto

Exemplo

Remover um <thead> elemento de uma tabela:

document.getElementById("myTable").deleteTHead();
Tente você mesmo "

Definição e Uso

O deleteTHead() método remove o <thead> elemento (and its content) da mesa.

Tip: Para criar um novo <thead> elemento para uma tabela, utilize o createTHead() método.


Suporte navegador

Método
deleteTHead() sim sim sim sim sim

Sintaxe

tableObject .deleteTHead()

parâmetros

Nenhum

Detalhes técnicos

Valor de retorno: Nenhum valor de retorno

mais Exemplos

Exemplo

Criar e excluir um <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();
}
Tente você mesmo "

Páginas relacionadas

: Referência HTML HTML <thead> tag


<Tabela objecto