目录

HTML DOM tbody 对象


TBody对象

TBody 对象表示 HTML <tbody> 元素。

访问 TBody 对象

您可以使用 getElementById() 访问 <tbody> 元素:

示例

var x = document.getElementById("myTBody");
亲自试一试 »

创建 TBody 对象

您可以使用 document.createElement() 方法创建 <tbody> 元素:

示例

var x = document.createElement("TBODY");
亲自试一试 »


TBody 对象属性

Property Description
align Not supported in HTML5. Use style.textAlign instead.
Sets or returns the horizontal alignment of the content inside the tbody element
ch Not supported in HTML5.
Sets or returns an alignment character inside the tbody element
chOff Not supported in HTML5.
Sets or returns the horizontal offset of the ch property
vAlign Not supported in HTML5. Use style.verticalAlign instead.
Sets or returns the vertical alignment of the content within a thead element

标准属性和事件

TBody对象也支持标准特性事件


相关页面

HTML 教程:HTML 表格

HTML 参考:HTML <tbody> 标签