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