目录

HTML DOM thead 对象


头部对象

THhead 对象表示 HTML <thead> 元素。

访问 THead 对象

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

示例

const element = document.getElementById("myTHead");
亲自试一试 »

创建 THead 对象

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

示例

const element = document.createElement("THEAD");
亲自试一试 »


THead 对象属性

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

标准属性和事件

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


相关页面

HTML 教程:HTML 表格

HTML 参考:HTML <thead> 标签