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