HTML DOM THead 對象用於表示 HTML <thead> 元素。它有助於引用訪問 HTML 文檔中的 <thead> 元素。
訪問一個 THead 對象:
我們可以使用 HTML getElementById() 方法輕鬆訪問文檔中的 <thead> 元素。
用法:
document.getElementById()
範例1:下麵的 HTML 代碼說明了如何更改 <thead> 元素的 bgcolor。
HTML
<!DOCTYPE html>
<html>
<head>
<style>
table,
th,
td {
border:1px solid green;
}
</style>
</head>
<body>
<center>
<h1>
GeeksforGeeks
</h1>
<p><b>HTML DOM THead Object </b></p>
<table>
<thead id="tableID" bgcolor="43e">
<tr>
<td>Username</td>
<td>User_Id</td>
</tr>
</thead>
<tbody>
<tr>
<td>Shashank</td>
<td>@shashankla</td>
</tr>
<tr>
<td>GeeksforGeeks</td>
<td>@geeks</td>
</tr>
</tbody>
</table>
<p>
Click on the button to change the
background color of thead element.
</p>
<button onclick="btnclick()">
Click here
</button>
<p id="paraID"></p>
</center>
<script>
function btnclick() {
var thead = document.getElementById("tableID");
thead.style.backgroundColor = "red";
}
</script>
</body>
</html>
輸出:
創建一個 THead 對象:我們可以使用 document.createElement() 方法創建一個 THead 對象。
用法:
document.createElement()
範例2:
HTML
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border:1px solid green;
}
</style>
</head>
<body>
<center>
<h1>
GeeksforGeeks
</h1>
<h2>HTML DOM THead object</h2>
<table id ="tableID">
</table>
<p>
Click button to create thead element.
</p>
<button onclick="btnclick()">
Click here
</button>
<script>
function btnclick() {
/* Create thead element */
var x = document.createElement("THEAD");
/* Create tr element */
var y = document.createElement("TR");
/* Create td element */
var z = document.createElement("TD");
z.innerHTML = "Username";
/* Create td element */
var w = document.createElement("TD");
w.innerHTML = "Password";
y.appendChild(z);
y.appendChild(w);
x.appendChild(y);
document.getElementById("tableID").appendChild(x);
}
</script>
</body>
</html>
輸出:
支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- 迷你 Opera
- Firefox
- 蘋果Safari
相關用法
- HTML DOM THead align屬性用法及代碼示例
- HTML Table tHead用法及代碼示例
- HTML DOM THead vAlign屬性用法及代碼示例
- HTML thead用法及代碼示例
- HTML <thead> char屬性用法及代碼示例
- HTML <thead> charoff屬性用法及代碼示例
- HTML <thead> align屬性用法及代碼示例
- HTML thead bgcolor用法及代碼示例
- HTML <thead> valign屬性用法及代碼示例
- HTML DOM Object用法及代碼示例
- HTML DOM HTML用法及代碼示例
- HTML DOM Object useMap屬性用法及代碼示例
- HTML DOM Input Week用法及代碼示例
- HTML DOM Header用法及代碼示例
- HTML DOM Footer用法及代碼示例
- HTML DOM Span用法及代碼示例
- HTML DOM HR用法及代碼示例
- HTML DOM button用法及代碼示例
- HTML Object name用法及代碼示例
- HTML DOM Abbreviation用法及代碼示例
- HTML DOM Body用法及代碼示例
- HTML DOM Bold用法及代碼示例
- HTML DOM Cite用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML DOM THead Object。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。