Element: ariaColSpan-Eigenschaft
Baseline 2023Newly available
Since October 2023, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
Die ariaColSpan
-Eigenschaft des Element
-Interfaces spiegelt den Wert des aria-colspan
-Attributs wider, welches die Anzahl der Spalten definiert, die von einer Zelle oder Gridcell innerhalb einer Tabelle, eines Grids oder Treegrids überspannt werden.
Wert
Ein String, der eine Ganzzahl enthält.
Beispiele
In diesem Beispiel wird das aria-colspan
-Attribut am Element mit der ID spanning-heading
auf "2" gesetzt. Mit ariaColSpan
aktualisieren wir den Wert auf "3".
html
<table>
<tr>
<th>Heading 1</th>
<th>Heading 2</th>
<th>Heading 3</td>
</tr>
<tr>
<td colspan="2" aria-colspan="2" id="spanning-column">Spanning</td>
<td>One</td>
</tr>
</table>
js
let el = document.getElementById("spanning-column");
console.log(el.ariaColSpan);
el.ariaColSpan = "3";
console.log(el.ariaColSpan);
Spezifikationen
Specification |
---|
Accessible Rich Internet Applications (WAI-ARIA) # dom-ariamixin-ariacolspan |
Browser-Kompatibilität
BCD tables only load in the browser