小码哥的IT人生

HTML DOM borderCollapse 属性

JavaScript基础 2022-06-08 14:50:45小码哥的IT人生shichen

HTML DOM borderCollapse 属性

定义和用法

borderCollapse 属性设置表格的边框是否被合并为一个单一的边框,还是象在标准的 HTML 中那样分开显示。

语法:

Object.style.borderCollapse=collapse|separate

可能的值

描述
separate 边框会被分开。
collapse 默认。如果可能,边框会被合并为一个单一的边框。

实例

下面的例子合并表格边框:

<html>
<head>
<script type="text/javascript">
function setBorderCollapse()
{
document.getElementById('myTable').style.borderCollapse="collapse"
}
</script>
</head>
<body>
<table border="1" id="myTable">
  <tr>
    <td>100</td>
    <td>200</td>
  </tr>
  <tr>
    <td>300</td>
    <td>400</td>
  </tr>
</table>
<br />
<input type="button" onclick="setBorderCollapse()"
value="Collapse border">
</body>
</html>

TIY

完整实例【borderCollapse - 把表格边框合并为单一边框】:

<html>
<head>
<script type="text/javascript">
function setBorderCollapse()
{
document.getElementById('myTable').style.borderCollapse="collapse";
}
</script>
</head>
<body>
<table border="1" id="myTable">
  <tr>
    <td>100</td>
    <td>200</td>
  </tr>
  <tr>
    <td>300</td>
    <td>400</td>
  </tr>
</table>
<br />
<input type="button" onclick="setBorderCollapse()" value="Collapse border">
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024