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 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

js
keys()

Rückgabewert

Ein neues Iterator Objekt.

Beispiele

Das folgende Beispiel iteriert über jeden Tastaturcode 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® 2025 Language Specification
# sec-map.prototype.keys

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch