HTML DOM TFoot 对象
TFoot 对象
TFoot 对象代表 HTML <tfoot> 元素。
访问 TFoot 对象
您可使用 getElementById() 来访问 <tfoot> 元素:
实例
var x = document.getElementById("myTFoot");
创建 TFoot 对象
您可使用 document.createElement() 方法来创建 <tfoot> 元素:
实例
var x = document.createElement("TFOOT");
TFoot 对象属性
属性 | 描述 |
---|---|
align |
HTML5 中不支持。请改用 style.textAlign。 设置或返回 tfoot 元素中内容的水平对齐方式。 |
ch |
HTML5 中不支持。 设置或返回 tfoot 元素内的对齐字符。 |
chOff |
HTML5 中不支持。 设置或返回 ch 属性的水平偏移量。 |
vAlign |
HTML5 中不支持。请改用 style.verticalAlign。 设置或返回 tfoot 元素中内容的垂直对齐方式。 |