TableData cellIndex 属性
JavaScript基础 2022-06-08 17:16:33小码哥的IT人生shichen
TableData cellIndex 属性
实例
例子 1
单击不同的单元格以提示其索引位置:
alert("Cell index is: " + x.cellIndex);
完整实例:
<!DOCTYPE html>
<html>
<head>
<style>
table, td {
border: 1px solid black;
}
</style>
</head>
<body>
<p>单击每个 td 元素可其实其在表格行中的位置。</p>
<table>
<tr>
<td onclick="myFunction(this)">点击可显示 cellIndex</td>
<td onclick="myFunction(this)">点击可显示 cellIndex</td>
<td onclick="myFunction(this)">点击可显示 cellIndex</td>
<td onclick="myFunction(this)">点击可显示 cellIndex</td>
</tr>
</table>
<script>
function myFunction(x) {
alert("单元格索引是:" + x.cellIndex);
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
例子 2
返回表格行中每个单元格的索引位置:
var x = document.getElementsByTagName("td");
var txt = "";
var i;
for (i = 0; i < x.length; i++) {
txt = txt + "单元格 " + (i + 1) + " 的索引是:" + x[i].cellIndex + "<br>";
}
完整实例:
<!DOCTYPE html>
<html>
<head>
<style>
table, td {
border: 1px solid black;
}
</style>
</head>
<body>
<table>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
<td>Cell 4</td>
</tr>
</table>
<p>单击该按钮可返回表格行中每个单元格的位置。</p>
<p id="demo"></p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
var x = document.getElementsByTagName("td");
var txt = "";
var i;
for (i = 0; i < x.length; i++) {
txt = txt + "单元格 " + (i + 1) + " 的索引是:" + x[i].cellIndex + "<br>";
}
document.getElementById("demo").innerHTML = txt;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
语法
返回 cellIndex 属性:
tabledataObject.cellIndex
技术细节
返回值: | 数值,表示单元格在表格行的单元格集合中的位置。 |
---|
浏览器支持
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
支持 | 支持 | 支持 | 支持 | 支持 |