Element: ariaPosInSet プロパティ
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.
ariaPosInSet
は Element
インターフェイスのプロパティで、現在のリストアイテムまたはツリーアイテムの集合における要素の番号または位置を定義する aria-posinset
属性の値を反映します。
値
整数の入った文字列です。
例
この例では、IDが article2
の要素の aria-posinset
属性は "2" に設定されています。ariaPosInSet
を使用して、値を "3" に更新します。
html
<article id="article1" aria-posinset="1">…</article>
<article id="article2" aria-posinset="2">…</article>
js
let el = document.getElementById("article2");
console.log(el.ariaPosInSet); // "2"
el.ariaPosInSet = "3";
console.log(el.ariaPosInSet); // "3"
仕様書
Specification |
---|
Accessible Rich Internet Applications (WAI-ARIA) # dom-ariamixin-ariaposinset |
ブラウザーの互換性
BCD tables only load in the browser