运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <head> <style> table, th { border: 1px solid black; } </style> </head> <body> <p>Click on each th element to alert its index position in the table row.</p> <table> <tr> <th onclick="myFunction(this)">Click to show cellIndex</th> <th onclick="myFunction(this)">Click to show cellIndex</th> <th onclick="myFunction(this)">Click to show cellIndex</th> <th onclick="myFunction(this)">Click to show cellIndex</th> </tr> </table> <script> function myFunction(x) { alert("Cell index is: " + x.cellIndex); } </script> </body> </html>