Element: ariaColSpan-Eigenschaft
Baseline 2023
Newly 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, das die Anzahl der Spalten definiert, die von einer Zelle oder Rasterzelle innerhalb einer Tabelle, eines Rasters oder eines Baumrasters überspannt werden.
Wert
Ein String, der eine ganze Zahl enthält.
Beispiele
In diesem Beispiel ist das aria-colspan
-Attribut des Elements 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