运行 ❯
获取您
的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> table, th, td { border: 1px solid black; } </style> </head> <body> <table id="myTable"> </table> <p>Click the button to create a TBODY element (and a TR and a TD).</p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { var x = document.createElement("TBODY"); var y = document.createElement("TR"); var z = document.createElement("TD"); z.innerHTML = "A table cell inside a tr inside a tbody inside a table!" y.appendChild(z); x.appendChild(y); document.getElementById("myTable").appendChild(x); } </script> </body> </html>