Najnowsze tutoriale tworzenie stron internetowych
 

Stół createTFoot() Method

<Stół obiektowy

Przykład

Tworzenie <tfoot> elementu (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>";
Spróbuj sam "

Definicja i Wykorzystanie

createTFoot() metoda tworzy pusty <tfoot> element i dodaje go do stołu.

Note: Jeżeli <tfoot> Element już istnieje w tabeli, createTFoot() metoda zwraca istniejący, a nie tworzyć nowe.

Uwaga: <tfoot> element musi mieć jeden lub więcej <tr> tagów wewnątrz.

Tip: W celu usunięcia <tfoot> elementu z tabeli użyć deleteTFoot() sposobu.


Wsparcie przeglądarka

metoda
createTFoot() tak tak tak tak tak

Składnia

tableObject .createTFoot()

parametry

Żaden

Szczegóły techniczne

Zwracana wartość: Nowo utworzona (or an existing) <tfoot> elementem

Więcej przykładów

Przykład

Tworzenie i usuwanie <tfoot> elementu:

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();
}
Spróbuj sam "

Podobne strony

Odniesienia HTML: HTML <tfoot> tag


<Stół obiektowy