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