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, bevor Sie diese produktiv verwenden.

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.

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

Wert

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 Language Specification
# sec-map.prototype.keys

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch