HTMLTableElement: createTFoot() Methode
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
Die createTFoot()
-Methode von HTMLTableElement
-Objekten gibt das mit einem bestimmten <table>
verbundene <tfoot>
-Element zurück. Falls kein Fußzeilen-Element in der Tabelle existiert, wird dieses durch die Methode erstellt und anschließend zurückgegeben.
Hinweis: Wenn keine Fußzeile existiert, fügt createTFoot()
eine neue Fußzeile direkt in die Tabelle ein. Die Fußzeile muss nicht separat hinzugefügt werden, was der Fall wäre, wenn Document.createElement()
verwendet worden wäre, um das neue <tfoot>
-Element zu erstellen.
Syntax
createTFoot()
Parameter
Keine.
Rückgabewert
Beispiele
let myFoot = myTable.createTFoot();
// Now this should be true: myFoot === myTable.tFoot
Spezifikationen
Specification |
---|
HTML Standard # dom-table-createtfoot-dev |
Browser-Kompatibilität
BCD tables only load in the browser