KeyboardLayoutMap:values() 方法
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
KeyboardLayoutMap
接口的 values()
方法返回一个新的迭代器对象,该对象包含 KeyboardLayoutMap
对象中每个索引的值。
该方法与 Map.prototype.values()
相似。
值
一个新的迭代器对象。
示例
以下示例迭代英文 QWERTY 键盘上每个位置或布局特定的字符串。
js
navigator.keyboard.getLayoutMap().then((keyboardLayoutMap) => {
for (const key of keyboardLayoutMap.values()) {
console.log(`${key} 键`);
}
});
规范
Specification |
---|
ECMAScript Language Specification # sec-map.prototype.values |
浏览器兼容性
BCD tables only load in the browser