Element: ariaKeyShortcuts-Eigenschaft
Baseline 2023
Newly available
Since October 2023, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
Die ariaKeyShortcuts
-Eigenschaft des Element
-Interfaces spiegelt den Wert des aria-keyshortcuts
-Attributs wider, das Tastenkombinationen angibt, die ein Autor implementiert hat, um ein Element zu aktivieren oder den Fokus darauf zu setzen.
Wert
Ein String.
Beispiele
In diesem Beispiel wird das aria-keyshortcuts
-Attribut des Elements mit der ID skip-link
auf "Alt+Shift+A" gesetzt. Mit ariaKeyShortcuts
aktualisieren wir den Wert auf "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"
Spezifikationen
Specification |
---|
Accessible Rich Internet Applications (WAI-ARIA) # dom-ariamixin-ariakeyshortcuts |
Browser-Kompatibilität
BCD tables only load in the browser