HTMLTableColElement: span 属性
HTMLTableColElement 接口的 span 属性表示此 <col> 或 <colgroup> 必须跨越的列数;这允许该列占用表格中多个列的空间。它反映了 span 属性。
值
一个表示列数的正数。
注意: 设置新值时,该值会被限制为最接近的严格正数(最多 1000)。
示例
此示例提供了两个按钮来修改表格主体第一单元格的列跨度。
HTML
html
<table>
<colgroup>
<col />
<col span="2" class="multiColumn" />
</colgroup>
<thead>
<th></th>
<th scope="col">C1</th>
<th scope="col">C2</th>
<th scope="col">C3</th>
<th scope="col">C4</th>
</thead>
<tbody>
<tr>
<th scope="row">Row 1</th>
<td>cell</td>
<td>cell</td>
<td>cell</td>
<td>cell</td>
</tr>
</tbody>
</table>
<button id="increase">Increase column span</button>
<button id="decrease">Decrease column span</button>
<div>The first <col> spans <output>2</output> actual column(s).</div>
CSS
css
.multiColumn {
background-color: #d7d9f2;
}
JavaScript
js
// Obtain relevant interface elements
const col = document.querySelectorAll("col")[1];
const output = document.querySelectorAll("output")[0];
const increaseButton = document.getElementById("increase");
const decreaseButton = document.getElementById("decrease");
increaseButton.addEventListener("click", () => {
col.span += 1;
// Update the display
output.textContent = col.span;
});
decreaseButton.addEventListener("click", () => {
col.span -= 1;
// Update the display
output.textContent = col.span;
});
结果
规范
| 规范 |
|---|
| HTML # dom-colgroup-span |
浏览器兼容性
加载中…