<!DOCTYPE html>
<html>
<head>
<style>
table, td {
border: 1px solid black;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th>行 1</th>
</tr>
<tr>
<th>行 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>行 3</td>
</tr>
<tr>
<td>行 4</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>行 5</td>
</tr>
<tr>
<td>行 6</td>
</tr>
</tfoot>
</table>
<p>单击该按钮可返回行在 thead、tbody 和 tfoot 行集合中的位置。</p>
<p id="demo"></p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
var x = document.getElementsByTagName("tr");
var txt = "";
var i;
for (i = 0; i < x.length; i++) {
txt = txt + "行 "+(i+1)+" 的索引是: "+x[i].sectionRowIndex+"<br>";
}
document.getElementById("demo").innerHTML = txt;
}
</script>
</body>
</html>