td/th headers 屬性
td/th 對(duì)象定義和用法
headers 屬性可設(shè)置或者返回當(dāng)前數(shù)據(jù)單元包含頭部信息表頭的頭部列表。
這個(gè)屬性的值是引號(hào)包括的一列名稱,這些名稱是用 id 屬性定義的不同表頭單元格的名稱。
語(yǔ)法
設(shè)置 headers 屬性:
tdObject.headers="header_ids"
or
thObject.headers="header_ids"
or
thObject.headers="header_ids"
返回 headers 屬性:
tdObject.headers
or
thObject.headers
or
thObject.headers
提示: headers 屬性沒(méi)有默認(rèn)值。
值 | 描述 |
---|---|
header_ids | 定義以空格為分割符的表頭單元id列表 |
瀏覽器支持
所有主要瀏覽器都支持 headers 屬性
實(shí)例
實(shí)例
顯示第二行表頭:
<html>
<head>
<script>
function displayResult()
{
var table=document.getElementById("myTable");
for (var i=0;i<table.rows[1].cells.length;i++)
? {
? alert(table.rows[1].cells[i].headers);
? }
}
</script>
</head>
<body>
<table id="myTable" border="1" width="100%">
? <tr>
??? <th id="name">Name</td>
??? <th id="email">Email</td>
??? <th id="phone">Phone</td>
??? <th id="addr">Address</td>
? </tr>
? <tr>
??? <td headers="name">John Doe</td>
??? <td headers="email">someone@example.com</td>
??? <td headers="phone">+45342323</td>
??? <td headers="addr">Rosevn 56,4300 Sandnes,Norway</td>
? </tr>
</table>
<br>
<button type="button" onclick="displayResult()">Get cell headers of second row</button>
</body>
</html>
<head>
<script>
function displayResult()
{
var table=document.getElementById("myTable");
for (var i=0;i<table.rows[1].cells.length;i++)
? {
? alert(table.rows[1].cells[i].headers);
? }
}
</script>
</head>
<body>
<table id="myTable" border="1" width="100%">
? <tr>
??? <th id="name">Name</td>
??? <th id="email">Email</td>
??? <th id="phone">Phone</td>
??? <th id="addr">Address</td>
? </tr>
? <tr>
??? <td headers="name">John Doe</td>
??? <td headers="email">someone@example.com</td>
??? <td headers="phone">+45342323</td>
??? <td headers="addr">Rosevn 56,4300 Sandnes,Norway</td>
? </tr>
</table>
<br>
<button type="button" onclick="displayResult()">Get cell headers of second row</button>
</body>
</html>
嘗試一下 ?
td/th 對(duì)象
更多建議: