元素:ariaRoleDescription 属性

基线 2023

新可用

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

ariaRoleDescriptionElement 接口的一个属性,它反映了 aria-roledescription 属性的值,该属性定义了元素角色的人类可读、作者本地化的描述。

字符串。

示例

在此示例中,已设置 ID 为 myApplication 的元素上的 aria-roledescription 属性。使用 ariaRoleDescription,我们可以更新该值。

html
<div
  id="myApplication"
  role="application"
  aria-roledescription="a description of this widget"></div>
js
let el = document.getElementById("myApplication");
console.log(el.ariaRoleDescription); // "a description of this widget"
el.ariaRoleDescription = "an updated description of this widget";
console.log(el.ariaRoleDescription); // "an updated description of this widget"

规范

规范
可访问的富互联网应用 (WAI-ARIA)
# dom-ariamixin-ariaorientation

浏览器兼容性

BCD 表格仅在浏览器中加载