HTMLTableElement: createTHead() 方法

基线 广泛可用

此功能已成熟,并在许多设备和浏览器版本中运行良好。它已在浏览器中可用,自 2015 年 7 月.

**createTHead()** 方法是 HTMLTableElement 对象的方法,它返回与给定 <table> 关联的 <thead> 元素。如果表格中不存在表头,则此方法会创建表头,然后返回它。

**注意:**如果不存在表头,createTHead() 会将新的表头直接插入表格中。不需要像使用 Document.createElement() 创建新的 <thead> 元素那样单独添加表头。

语法

js
createTHead()

参数

无。

返回值

示例

js
let myhead = mytable.createTHead();
// Now this should be true: myhead === mytable.tHead

规范

规范
HTML 标准
# dom-table-createthead-dev

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。