HTML | DOM TableData标头属性用于设置或返回标头属性的值。标头的属性用于指定一个表格单元,其中包含当前数据单元的标头信息。
用法:
- 它返回headers属性。
tabledataObject.headers
- 它用于设置headers属性。
tabledataObject.headers = header_ids
属性值:它包含值header_ids,该值指定ID到一个或mpre标头单元格的分隔列表。
返回值:它返回一个字符串值,表示header-list ID的分隔列表。
示例1:本示例返回标头属性。
<!DOCTYPE html>
<html>
<head>
<style>
table,
th,
td {
border:1px solid green;
}
</style>
</head>
<body>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>
DOM TableData Headers Property
</h2>
<table>
<tr>
<td id="myTd"
headers="Geeks"
colspan="3">
Geeks
</td>
<td>For</td>
<td>Geeks</td>
</tr>
</table>
<br>
<button onclick="myFunction()">
Click Here!
</button>
<p id="demo"
style="font-size:24px;
colorgreen;">
</p>
<script>
function myFunction() {
// Accessing Table data
var x =
document.getElementById(
"myTd").headers;
document.getElementById("demo").innerHTML =
x;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
示例2:本示例设置标题的属性。
<!DOCTYPE html>
<html>
<head>
<style>
table,
th,
td {
border:1px solid green;
}
</style>
</head>
<body>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>
DOM TableData Headers Property
</h2>
<table>
<tr>
<td id="myTd"
headers="Geeks"
colspan="3">
Geeks
</td>
<td>For</td>
<td>Geeks</td>
</tr>
</table>
<br>
<button onclick="myFunction()">
Click Here!
</button>
<p id="demo"
style="font-size:24px;
colorgreen;">
</p>
<script>
function myFunction() {
// Accessing Table data
var x =
document.getElementById(
"myTd").headers = "GFG";
document.getElementById("demo").innerHTML =
"The value od the headers attribute was changed to "
+ x;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:
- 谷歌浏览器
- 火狐浏览器
- Edge
- Safari
- Opera
相关用法
- HTML TableData cellIndex用法及代码示例
- HTML TableData colSpan用法及代码示例
- HTML TableData rowSpan用法及代码示例
- HTML DOM TableData用法及代码示例
- HTML <td> headers属性用法及代码示例
- HTML headers属性用法及代码示例
- HTML <th> headers属性用法及代码示例
- HTML DOM value用法及代码示例
- HTML Map name用法及代码示例
- HTML li value用法及代码示例
- HTML DOM URL用法及代码示例
- HTML DOM dir用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM TableData headers Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。