Table createTHead() 方法
定义和用法
createTHead()
方法创建空的 <thead> 元素 并将其添加到表中。
注释:如果表中已经存在 <thead> 元素,则 createTHead()
方法返回现有元素,而不创建新元素。
注释:<thead> 元素内部必须有一个或多个 <tr> 标签。
提示:如需从表中删除 <thead> 元素,请使用 deleteTHead() 方法。
另请参阅:
HTML 参考手册:HTML <thead> 标签
实例
例子 1
创建 <thead> 元素(并在其中插入 <tr> 和 <td> 元素):
// 查找 id="myTable" 的 <table> 元素: var table = document.getElementById("myTable"); // 创建空的 <thead> 元素并将其添加到表中: var header = table.createTHead(); // 创建空的 <tr> 元素并将其添加到 <thead> 的第一个位置: var row = header.insertRow(0); // 在 "新的" <tr> 元素的第一个位置插入一个新单元格 (<td>): var cell = row.insertCell(0); // 在新单元格中添加粗体文本: cell.innerHTML = "<b>This is a table header</b>";
例子 2
创建和删除 <thead> 元素:
function myCreateFunction() { var table = document.getElementById("myTable"); var header = table.createTHead(); var row = header.insertRow(0); var cell = row.insertCell(0); cell.innerHTML = "<b>This is a table header</b>"; } function myDeleteFunction() { document.getElementById("myTable").deleteTHead(); }
语法
tableObject.createTHead()
参数
无。
技术细节
返回值: | 新创建的(或现有的)<thead> 元素。 |
---|
浏览器支持
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
支持 | 支持 | 支持 | 支持 | 支持 |