目录

HTML DOM tfoot 对象


T脚对象

TFoot 对象表示 HTML <tfoot> 元素。

访问 TFoot 对象

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

示例

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

创建 TFoot 对象

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

示例

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


TFoot 对象属性

Property Description
align Not supported in HTML5. Use style.textAlign instead.
Sets or returns the horizontal alignment of the content inside the tfoot element
ch Not supported in HTML5.
Sets or returns an alignment character inside the tfoot 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 tfoot element

标准属性和事件

TFoot 对象还支持标准特性事件


相关页面

HTML 教程:HTML 表格

HTML 参考:HTML <tfoot> 标签