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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。