Przykład
Usuwanie <thead> elementu z tabeli:
document.getElementById("myTable").deleteTHead();
Spróbuj sam " Definicja i Wykorzystanie
deleteTHead() sposób usuwa <thead> elementu (and its content) z tabeli.
Tip: Aby utworzyć nowy <thead> elementu na stole, użyj createTHead() metody.
Wsparcie przeglądarka
metoda | |||||
---|---|---|---|---|---|
deleteTHead() | tak | tak | tak | tak | tak |
Składnia
tableObject .deleteTHead()
parametry
Żaden |
Szczegóły techniczne
Zwracana wartość: | Nie zwraca wartości |
---|
Więcej przykładów
Przykład
Tworzenie i usuwanie <thead> elementu:
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();
}
Spróbuj sam " Podobne strony
Odniesienia HTML: HTML <thead> tag
<Stół obiektowy