简单教程
提交运行
代码编辑器:
<style> table,th { border:1px solid black; } </style> <p>点击每个 th 元素,弹出提示框显示它们的索引位置:</p> <table> <tr> <th onclick="myFunction(this)">点击显示 cellIndex</th> <th onclick="myFunction(this)">点击显示 cellIndex</th> <th onclick="myFunction(this)">点击显示 cellIndex</th> <th onclick="myFunction(this)">点击显示 cellIndex</th> </tr> </table> <script> function myFunction(x) { alert("单元格索引是: " + x.cellIndex); } </script>
运行结果: