元素:ariaKeyShortcuts 属性
ariaKeyShortcuts
是 Element
接口的属性,它反映了 aria-keyshortcuts
属性的值,该属性指示作者为激活或将焦点设置到元素而实现的键盘快捷键。
值
字符串。
示例
在这个示例中,ID 为 skip-link
的元素的 aria-keyshortcuts
属性设置为“Alt+Shift+A”。使用 ariaKeyShortcuts
,我们将值更新为“Alt+Shift+M”。
html
<a id="skip-link" href="#content" aria-keyshortcuts="Alt+Shift+A">
Skip to content
</a>
js
let el = document.getElementById("saveChanges");
console.log(el.ariaKeyShortcuts); // "Alt+Shift+A"
el.ariaKeyShortcuts = "Alt+Shift+M";
console.log(el.ariaKeyShortcuts); // "Alt+Shift+M"
规范
规范 |
---|
无障碍富互联网应用 (WAI-ARIA) # dom-ariamixin-ariakeyshortcuts |
浏览器兼容性
BCD 表格仅在浏览器中加载