KeyboardLayoutMap: keys() Methode
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Please take two minutes to fill out our short survey.
Experimentell: Dies ist eine experimentelle Technologie
Überprüfen Sie die Browser-Kompatibilitätstabelle sorgfältig vor der Verwendung auf produktiven Webseiten.
Die keys()
Methode der KeyboardLayoutMap
Schnittstelle gibt ein neues Iterator Objekt zurück, das die Schlüssel für jeden Index im KeyboardLayoutMap
Objekt enthält.
Ansonsten ist die Methode identisch mit Map.prototype.keys()
.
Syntax
keys()
Rückgabewert
Ein neues Iterator Objekt.
Beispiele
Das folgende Beispiel iteriert über jeden Tastaturcode auf einer englischen QWERTY-Tastatur.
navigator.keyboard.getLayoutMap().then((keyboardLayoutMap) => {
for (const code of keyboardLayoutMap.keys()) {
console.log(`${code} keyboard code`);
}
});
Spezifikationen
Specification |
---|
ECMAScript® 2026 Language Specification # sec-map.prototype.keys |