HTMLTableCellElement: rowSpan 屬性
HTMLTableCellElement 介面的 rowSpan 屬性表示該單元格需要跨越的行數;這允許單元格跨越多行表格。它反映了 rowspan 屬性。
值
一個表示行數的正數。如果為 0,則表示該列中所有剩餘的行。
注意: 設定新值時,非 0 值會被限制為最接近的正整數。
示例
本示例提供了兩個按鈕來修改表格體中第一個單元格的行跨度。
HTML
html
<table>
<thead>
<tr>
<th>Col 1</th>
<th>Col 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>1</td>
</tr>
<tr>
<td rowspan="2">2</td>
<td>2</td>
</tr>
<tr>
<td>3</td>
<td>3</td>
</tr>
<tr>
<td>4</td>
<td>4</td>
</tr>
</tbody>
</table>
<button id="increase">Increase rowspan</button>
<button id="decrease">Decrease rowspan</button>
<div>The second cell of the first column spans <output>2</output> row(s).</div>
JavaScript
js
// Obtain relevant interface elements
const row = document.querySelectorAll("tbody tr")[1];
const cell = row.cells[0];
const output = document.querySelectorAll("output")[0];
const increaseButton = document.getElementById("increase");
const decreaseButton = document.getElementById("decrease");
increaseButton.addEventListener("click", () => {
cell.rowSpan += 1;
// Update the display
output.textContent = cell.rowSpan;
});
decreaseButton.addEventListener("click", () => {
cell.rowSpan -= 1;
// Update the display
output.textContent = `${cell.rowSpan === 0 ? "all remaining" : cell.rowSpan}`;
});
結果
規範
| 規範 |
|---|
| HTML # dom-tdth-rowspan |
瀏覽器相容性
載入中…