元素:ariaDescription 属性
ariaDescription
是 Element
接口的一个属性,它反映了 aria-description
属性的值,该属性定义了一个字符串值,用于描述或注释当前元素。
值
一个字符串。
示例
在这个例子中,ID 为 close-button
的元素上的 aria-description
属性被设置为字符串“此元素功能的更详细描述”。使用 ariaDescription
,我们可以更新该值。
html
<button
aria-label="Close"
aria-description="A longer description of the function of this element"
id="close-button">
X
</button>
js
let el = document.getElementById("close-button");
console.log(el.ariaDescription); // "A longer description of the function of this element"
el.ariaDescription = "A different description";
console.log(el.ariaDescription); // "A different description"
规范
规范 |
---|
可访问的富互联网应用程序 (WAI-ARIA) # dom-ariamixin-ariadescription |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。