HTML DOM TBody-Objekt

TBody object

The TBody object represents the HTML <tbody> element.

Access TBody object

You can use getElementById() to access the <tbody> element:

var x = document.getElementById("myTBody");

Try it yourself

Create TBody object

You can use the document.createElement() method to create a <tbody> element:

var x = document.createElement("TBODY");

Try it yourself

TBody object properties

Eigenschaften Description
align

HTML5 does not support.Bitte verwenden Sie eine andere Methode. style.textAlign.

Sets or returns the horizontal alignment of the content within the tbody element.

ch

HTML5 does not support.

Sets or returns the alignment character within the tbody element.

chOff

HTML5 does not support.

Sets or returns the horizontal offset of the ch attribute.

vAlign

HTML5 does not support.Bitte verwenden Sie eine andere Methode. style.verticalAlign.

Setzt oder gibt die vertikale Ausrichtung des Inhalts des thead-Elements zurück.

Standardattribute und Ereignisse

Das TBody-Objekt unterstützt StandardsEigenschaftenundEreignisse.

Verwandte Seiten

HTML-Tutorial:HTML-Tabelle

HTML-Referenzhandbuch:HTML <tbody>-Tag