简单教程
提交运行
代码编辑器:
<script> function displayResult(x){ alert("Section row index is: " + x.sectionRowIndex); } </script> <table border="1"> <thead> <tr onclick="displayResult(this)"> <th>单击显示行下标</th> </tr> <tr onclick="displayResult(this)"> <th>单击显示行下标</th> </tr> </thead> <tbody> <tr onclick="displayResult(this)"> <td>单击显示行下标</td> </tr> <tr onclick="displayResult(this)"> <td>单击显示行下标</td> </tr> </tbody> <tfoot> <tr onclick="displayResult(this)"> <td>单击显示行下标</td> </tr> <tr onclick="displayResult(this)"> <td>单击显示行下标</td> </tr> </tfoot> </table>
运行结果: