tutoriais mais recente desenvolvimento web
 

Mesa createTFoot() Method

<Tabela objecto

Exemplo

Criar um <tfoot> elemento (and insert a <tr> and <td> element to it) :

// Find a <table> element with id="myTable":
var table = document.getElementById("myTable");

// Create an empty <tfoot> element and add it to the table:
var footer = table.createTFoot();

// Create an empty <tr> element and add it to the first position of <tfoot> :
var row = footer.insertRow(0);     

// Insert a new cell (<td>) at the first position of the "new" <tr> element:
var cell = row.insertCell(0);

// Add some bold text in the new cell:
cell.innerHTML = "<b>This is a table footer</b>";
Tente você mesmo "

Definição e Uso

O createTFoot() método cria um vazio <tfoot> elemento e adiciona-lo para a mesa.

Note: Se um <tfoot> elemento já existe na tabela, o createTFoot() método retorna o existente, e não cria um novo.

Nota: O <tfoot> elemento deve ter um ou mais <tr> tag dentro.

Tip: Para remover o <tfoot> elemento de uma tabela, use o deleteTFoot() método.


Suporte navegador

Método
createTFoot() sim sim sim sim sim

Sintaxe

tableObject .createTFoot()

parâmetros

Nenhum

Detalhes técnicos

Valor de retorno: O recém-criado (or an existing) <tfoot> elemento

mais Exemplos

Exemplo

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

Páginas relacionadas

Referência HTML: HTML <tfoot> tag


<Tabela objecto