Table tHead屬性用於返回對表的<thead>元素的引用。 <thead>元素用於對HTML表中的標題內容進行分組。如果未定義<thead>元素,則返回NULL。
用法
tableObject.tHead
以下示例程序旨在說明表THead()屬性:
例:提醒innerHTML <thead>元素。
<!DOCTYPE html>
<html>
<head>
<title>Table tHead Property in HTML
</title>
<style>
table,
td {
border:1px solid green;
}
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>Table tHead Property</h2>
<p>To return the innerHTML of the thead
element for the table, double-click the
"Return Header" button.</p>
<table id="Courses" align="center">
<thead>
<tr>
<th>Subject</th>
<th>Courses</th>
</tr>
</thead>
<tr>
<td>Java</td>
<td>Fork Java</td>
</tr>
<tr>
<td>Python</td>
<td>Fork Python</td>
</tr>
<tr>
<td>Placements</td>
<td>Sudo Placement</td>
</tr>
</table>
<br>
<button ondblclick="thead()">
Return Header
</button>
<script>
function thead() {
// returning reference of tHead
// using alert.
alert(document.getElementById(
"Courses").tHead.innerHTML);
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:
- 蘋果Safari
- IE瀏覽器
- Firefox
- 穀歌瀏覽器
- Opera
相關用法
- HTML Table caption用法及代碼示例
- HTML Table width用法及代碼示例
- HTML Table tFoot用法及代碼示例
- HTML thead用法及代碼示例
- HTML <thead> valign屬性用法及代碼示例
- HTML thead bgcolor用法及代碼示例
- HTML <thead> char屬性用法及代碼示例
- HTML <thead> charoff屬性用法及代碼示例
- HTML <thead> align屬性用法及代碼示例
- CSS table-layout用法及代碼示例
- HTML DOM Table用法及代碼示例
- HTML DOM Table deleteTHead()用法及代碼示例
- HTML <table> summary屬性用法及代碼示例
- HTML <table> width屬性用法及代碼示例
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM Table tHead Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。