Najnowsze tutoriale tworzenie stron internetowych
 

Stół deleteTFoot() Method

<Stół obiektowy

Przykład

Usuwanie <tfoot> elementu z tabeli:

document.getElementById("myTable").deleteTFoot();
Spróbuj sam "

Definicja i Wykorzystanie

deleteTFoot() sposób usuwa <tfoot> elementu (and its content) z tabeli.

Tip: Aby utworzyć nowy <tfoot> elementu na stole, użyj createTFoot() metody.


Wsparcie przeglądarka

metoda
deleteTFoot() tak tak tak tak tak

Składnia

tableObject .deleteTFoot()

parametry

Żaden

Szczegóły techniczne

Zwracana wartość: Nie zwraca wartości

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