Przykład
Tworzenie <thead> 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 <thead> element and add it to the table:
var header =
table.createTHead();
// Create an empty <tr> element and add it to
the first position of <thead> :
var row =
header.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 header</b>";
Spróbuj sam " Definicja i Wykorzystanie
createTHead() metoda tworzy pusty <thead> element i dodaje go do stołu.
Note: Jeżeli <thead> Element już istnieje w tabeli, createTHead() metoda zwraca istniejący, a nie tworzyć nowe.
Uwaga: <thead> element musi mieć jeden lub więcej <tr> tagów wewnątrz.
Tip: W celu usunięcia <thead> elementu z tabeli użyć deleteTHead() sposobu.
Wsparcie przeglądarka
metoda | |||||
---|---|---|---|---|---|
createTHead() | tak | tak | tak | tak | tak |
Składnia
tableObject .createTHead()
parametry
Żaden |
Szczegóły techniczne
Zwracana wartość: | Nowo utworzona (or an existing) <thead> elementem |
---|
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