rowspan

阅读:166      收藏:0      [点我收藏+]

td/th headers 属性


定义和用法

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>

关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!