KeyboardLayoutMap:keys() 方法

Limited availability

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

实验性: 这是一项实验性技术
在将其用于生产之前,请仔细检查浏览器兼容性表格

KeyboardLayoutMap 接口的 keys() 方法返回一个新的迭代器对象,该对象包含 KeyboardLayoutMap 对象中每个索引的键。

该方法与 Map.prototype.keys() 相似。

一个新的迭代器对象。

示例

以下示例迭代英文 QWERTY 键盘上的每个键盘代码。

js
navigator.keyboard.getLayoutMap().then((keyboardLayoutMap) => {
  for (const code of keyboardLayoutMap.keys()) {
    console.log(`${code} 键盘代码`);
  }
});

规范

Specification
ECMAScript Language Specification
# sec-map.prototype.keys

浏览器兼容性

BCD tables only load in the browser

参见