例
作成<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>要素が1つ以上持っている必要があります<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>タグ
<テーブルオブジェクト