<!DOCTYPE html>
<html>
<head>
<style>
table, td {
border: 1px solid black;
}
</style>
</head>
<body>
<p>单击每个 tr 元素以提醒行在 thead、tbody 和 tfoot 行集合中的位置。</p>
<table>
<thead>
<tr onclick="myFunction(this)">
<th>点击可显示 sectionRowIndex</th>
</tr>
<tr onclick="myFunction(this)">
<th>点击可显示 sectionRowIndex</th>
</tr>
</thead>
<tbody>
<tr onclick="myFunction(this)">
<td>点击可显示 sectionRowIndex</td>
</tr>
<tr onclick="myFunction(this)">
<td>点击可显示 sectionRowIndex</td>
</tr>
</tbody>
<tfoot>
<tr onclick="myFunction(this)">
<td>点击可显示 sectionRowIndex</td>
</tr>
<tr onclick="myFunction(this)">
<td>点击可显示 sectionRowIndex</td>
</tr>
</tfoot>
</table>
<script>
function myFunction(x) {
alert("节行索引是:" + x.sectionRowIndex);
}
</script>
</body>
</html>