编辑下面的代码:【加编码】
<html> <head> <style> table,th { border:1px solid black; } </style> </head> <body> <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> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂