JavaScript 参考手册
Style borderSpacing 属性
设置表格中单元格之间的距离
源代码:
点击运行 »
<table id="myTable" border="1"> <tr> <th>月份</th> <th>储蓄</th> </tr> <tr> <td>一月</td> <td>$100</td> </tr> <tr> <td>二月</td> <td>$150</td> </tr> </table> <br> <button type="button" onclick="myFunction()">改变边框间距</button> <script> function myFunction() { document.getElementById("myTable").style.borderSpacing = "20px"; } </script>
运行结果:
点击运行 »