元素:ariaKeyShortcuts 属性

基线 2023

新可用

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

ariaKeyShortcutsElement 接口的属性,它反映了 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 表格仅在浏览器中加载