執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <head> <script> function createCaption(id) { document.getElementById(id).createCaption().innerHTML = "My new caption"; } </script> </head> <body> <table id="myTable" style="border: 1px solid black"> <tr> <td>Row1 cell1</td> <td>Row1 cell2</td> </tr> <tr> <td>Row2 cell1</td> <td>Row2 cell2</td> </tr> </table> <p> <input type="button" onclick="createCaption('myTable')" value="Create caption"> </p> </body> </html>