KeyboardLayoutMap: keys() Methode

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

Experimentell: Dies ist eine experimentelle Technologie
Überprüfen Sie die Browser-Kompatibilitätstabelle sorgfältig vor der Verwendung auf produktiven Webseiten.

Die keys() Methode des KeyboardLayoutMap Schnittstelle gibt ein neues Iterator-Objekt zurück, das die Schlüssel für jeden Index im KeyboardLayoutMap-Objekt enthält.

Die Methode ist ansonsten identisch mit Map.prototype.keys().

Syntax

js
keys()

Parameter

Keine.

Rückgabewert

Ein neues Iterator-Objekt.

Beispiele

Das folgende Beispiel durchläuft jeden Keyboard-Code auf einer englischen QWERTY-Tastatur.

js
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

Browser-Kompatibilität

Siehe auch