KeyboardLayoutMap: keys() Methode

Limited availability

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

We’d love to hear your thoughts on the next set of proposals for the JavaScript language. You can find a description of the proposals here.
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

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

Browser-Kompatibilität

Siehe auch