BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>BootWiki 教程网</title> <script> function displayResult(){ document.getElementById("myTable").style.tableLayout="fixed"; } </script> </head> <body> <table border="1" id="myTable" width="300"> <thead> <th>表格表头</th> <th>表格表头</th> </thead> <tbody> <tr> <td>这是一些文本。这是一些文本。</td> <td>这是另一些文本</td> </tr> </tbody> </table> <br> <button onclick="displayResult()" type="button">设置固定的表格布局</button> </body> </html>
运行结果