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.

ariaPosInSetElement インターフェイスのプロパティで、現在のリストアイテムまたはツリーアイテムの集合における要素の番号または位置を定義する 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

ブラウザーの互換性

Report problems with this compatibility data on GitHub
desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
ariaPosInSet

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support