举报投诉联系我们 手机版 热门标签 编程学
您的位置:编程学 > html header属性 HTML DOM td/th headers 属性

html header属性 HTML DOM td/th headers 属性

2023-06-19 04:18

html header属性 HTML DOM td/th headers 属性

html header属性 HTML DOM td/th headers 属性

html header属性

td/th headers 属性

td/th 对象参考手册 td/th 对象

定义和用法

headers 属性可设置或者返回当前数据单元包含头部信息表头的头部列表。

这个属性的值是引号包括的一列名称,这些名称是用 id 属性定义的不同表头单元格的名称。

语法

设置 headers 属性:

tdObject.headers="header_ids"

or

thObject.headers="header_ids"

返回 headers 属性:

tdObject.headers

or

thObject.headers

提示: headers 属性没有默认值。

描述
header_ids 定义以空格为分割符的表头单元id列表


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 headers 属性


实例

实例

显示第二行表头:

<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 对象参考手册 td/th 对象
阅读全文
以上是编程学为你收集整理的html header属性 HTML DOM td/th headers 属性全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 编程学 bianchengxue.com 版权所有 联系我们
桂ICP备19012293号-7 返回底部