Ultimele tutoriale de dezvoltare web
 

Masa createTFoot() Method

<Tabelul Object

Exemplu

Crearea unui <tfoot> Element (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>";
Încearcă - l singur »

Definiție și utilizare

createTFoot() Metoda creează un gol <tfoot> elementul și îl adaugă la masa.

Note: În cazul în care un <tfoot> există deja elementul pe masa, createTFoot() metoda returneaza cea existentă, și nu creează unul nou.

Notă: <tfoot> Elementul trebuie să aibă unul sau mai multe <tr> etichete în interior.

Tip: Pentru a elimina <tfoot> Elementul dintr - un tabel, utilizați deleteTFoot() metoda.


Suport pentru browser-

Metodă
createTFoot() da da da da da

Sintaxă

tableObject .createTFoot()

Parametrii

Nici unul

Detalii tehnice

Întoarcere Valoare: Nou creat (or an existing) <tfoot> Element

Mai multe exemple

Exemplu

Crearea și ștergerea unui <tfoot> Element:

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();
}
Încearcă - l singur »

Pagini similare

Referință HTML: HTML <tfoot> tag


<Tabelul Object