BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>BootWiki 教程网</title> </head> <body> <table border="1" id="myTable"> <tr> <th>月份</th> <th>储蓄</th> </tr> <tr> <td>一月</td> <td>$100</td> </tr> <tr> <td>二月</td> <td>$150</td> </tr> </table> <br> <button onclick="myFunction()" type="button">折叠边框</button> <script> function myFunction(){ document.getElementById("myTable").style.borderCollapse="collapse"; } </script> </body> </html>
运行结果