元素:ariaPosInSet 属性

基线 2023

新可用

2023 年 10 月起,此功能可在最新的设备和浏览器版本中使用。此功能可能无法在较旧的设备或浏览器中使用。

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"

规范

规范
无障碍富互联网应用 (WAI-ARIA)
# dom-ariamixin-ariaposinset

浏览器兼容性

BCD 表格仅在浏览器中加载