元素:ariaRoleDescription 属性
ariaRoleDescription
是 Element
接口的一个属性,它反映了 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 表格仅在浏览器中加载