HTMLTableCellElement: cellIndex-Eigenschaft
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
Die cellIndex
schreibgeschützte Eigenschaft des HTMLTableCellElement
Schnittstelle
repräsentiert die Position einer Zelle innerhalb ihrer Zeile (<tr>
). Die erste Zelle hat einen Index von 0
.
Wert
Gibt den Index der Zelle zurück oder -1
, wenn die Zelle nicht Teil einer Zeile ist.
Beispiele
Dieses Beispiel fügt allen Zellnummern der ersten Zeile des tbody
ein Label hinzu.
HTML
html
<table>
<thead>
<tr>
<th>Item</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bananas</td>
<td>$2</td>
</tr>
<tr>
<td>Rice</td>
<td>$2.5</td>
</tr>
</tbody>
</table>
JavaScript
js
const rows = document.querySelectorAll("tbody tr");
const cells = rows[0].cells;
for (const cell of cells) {
cell.textContent = `${cell.textContent} (cell #${cell.cellIndex})`;
}
Ergebnis
Spezifikationen
Specification |
---|
HTML Standard # dom-tdth-cellindex |
Browser-Kompatibilität
BCD tables only load in the browser