最新的Web開發教程
 

createTHead() Method

<表對象

創建<thead>元件(and insert a <tr> and <td> element to it)

// Find a <table> element with id="myTable":
var table = document.getElementById("myTable");

// Create an empty <thead> element and add it to the table:
var header = table.createTHead();

// Create an empty <tr> element and add it to the first position of <thead> :
var row = header.insertRow(0);    

// Insert a new cell (<td>) at the first position of the "new" <tr> element:
var cell = row.insertCell(0);

// Add some bold text in the new cell:
cell.innerHTML = "<b>This is a table header</b>";
試一試»

定義和用法

所述createTHead()方法創建一個空<thead>元素,並將其添加到表中。

Note:如果一個<thead>元件上的表已經存在,則createTHead()方法返回現有之一,並且不產生新的一個。

注意: <thead>元素必須具有一個或多個<tr>內標籤。

Tip:要刪除<thead>從表元素,使用deleteTHead()方法。


瀏覽器支持

方法
createTHead()

句法

tableObject .createTHead()

參數

沒有

技術細節

返回值: 新創建的(or an existing) <thead>元件

更多示例

創建和刪除一個<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();
}
試一試»

相關頁面

HTML參考: HTML <thead>標籤


<表對象