运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,暗/亮
前往空间
<!DOCTYPE html> <html> <head> <style> table, th, td { border: 1px solid black; } </style> </head> <body> <p>Click the button to remove the tfoot element from the table.</p> <table id="myTable"> <thead> <tr> <th>Month</th> <th>Savings</th> </tr> </thead> <tfoot> <tr> <td>Sum</td> <td>$180</td> </tr> </tfoot> <tbody> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$80</td> </tr> </tbody> </table> <br> <button onclick="myFunction()">Try it</button> <script> function myFunction() { document.getElementById("myTable").deleteTFoot(); } </script> </body> </html>