HTML DOM中的TableHeader cellIndex属性用于返回表格行的单元格集合中单元格的位置。
用法:
- 它返回cellIndex属性:
tableheaderObject.cellIndex
返回值:它返回一个数字值,该值表示表行的单元格集合中单元格的位置。
例:
<!DOCTYPE html>
<html>
<head>
<!-- style to set border -->
<style>
table,
th,
td {
border:1px solid black;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>DOM TableHeader CellIndex Property</h2>
<table>
<tr>
<th id="gfg" onclick="myGeeks(this)">
Username
</th>
<th id="gfg" onclick="myGeeks(this)">
Id
</th>
</tr>
<tr>
<td>geeks</td>
<td>23456</td>
</tr>
</table>
<p>
Click on TableHeader to get the CellIndex th element.
</p>
<!-- Script to access th element -->
<script>
function myGeeks(x) {
alert("cell index is:" + x.cellIndex);
}
</script>
</body>
</html>
输出:
在单击“表格”单元格之前:
单击“表格”单元格后:
支持的浏览器:下面列出了DOM TableHeader cellIndex属性支持的浏览器:
- 谷歌浏览器
- IE浏览器
- Firefox
- 苹果Safari
- Opera
相关用法
- HTML TableData cellIndex用法及代码示例
- HTML TableHeader abbr用法及代码示例
- HTML DOM TableHeader用法及代码示例
- HTML li value用法及代码示例
- HTML DOM name用法及代码示例
- HTML DOM URL用法及代码示例
- HTML DOM id用法及代码示例
- HTML Map name用法及代码示例
- HTML DOM value用法及代码示例
- HTML DOM dir用法及代码示例
- HTML DOM specified用法及代码示例
- HTML Bdo dir用法及代码示例
- HTML DOM title用法及代码示例
- HTML HR width用法及代码示例
- HTML DOM isContentEditable用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM TableHeader cellIndex Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。