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列表 |
浏览器支持
所有主要浏览器都支持 headers 属性。
在线实例
实例
显示第二行表头:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>牛客教程(nowcoder.com)</title> <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">名称</th> <th id="email">Email</th> <th id="phone">电话</th> <th id="addr">地址</th> </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()">获取第二行的单元格表头</button> </body> </html>