简单教程
提交运行
代码编辑器:
<script> function displayResult(){ document.getElementById("myTable").style.tableLayout="fixed"; } </script> <table id="myTable" width="300" border="1"> <thead> <th>表格表头</th> <th>表格表头</th> </thead> <tbody> <tr> <td>这是一些文本。这是一些文本。</td> <td>这是另一些文本</td> </tr> </tbody> </table> <br> <button type="button" onclick="displayResult()">设置固定的表格布局</button>
运行结果: