Neueste Web-Entwicklung Tutorials
 

Tabelle createTHead() Method

<Table Object

Beispiel

Erstellen Sie ein <thead> Element (and insert a <tr> and <td> element to it) Sie (and insert a <tr> and <td> element to it) , (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>";
Versuch es selber "

Definition und Verwendung

Die createTHead() Methode erstellt ein leeres <thead> Element und fügt sie auf den Tisch.

Note: Wenn ein <thead> Element bereits auf dem Tisch vorhanden ist , die createTHead() Methode , um die bestehende zurückgibt und keine neue schafft.

Hinweis: Das <thead> Element eine haben muss oder mehr <tr> -Tags innerhalb.

Tip: Um das Entfernen <thead> Element aus einer Tabelle, verwenden Sie die deleteTHead() Methode.


Browser-Unterstützung

Methode
createTHead() Ja Ja Ja Ja Ja

Syntax

tableObject .createTHead()

Parameter

Keiner

Technische Details

Rückgabewert: Die neu erstellen (or an existing) <thead> Element

Mehr Beispiele

Beispiel

Erstellen und Löschen eines <thead> Element:

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();
}
Versuch es selber "

Verwandte Seiten

HTML - Referenz: HTML <thead> -Tag


<Table Object