From e48bfd052304805803f49e3c90c47160a052b5db Mon Sep 17 00:00:00 2001 From: skyclouds2001 <95597335+skyclouds2001@users.noreply.github.com> Date: Wed, 9 Oct 2024 11:54:32 +0800 Subject: [PATCH 1/2] add --- .../web/api/keyboardlayoutmap/size/index.md | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 files/zh-cn/web/api/keyboardlayoutmap/size/index.md diff --git a/files/zh-cn/web/api/keyboardlayoutmap/size/index.md b/files/zh-cn/web/api/keyboardlayoutmap/size/index.md new file mode 100644 index 00000000000000..b8e2af670e2321 --- /dev/null +++ b/files/zh-cn/web/api/keyboardlayoutmap/size/index.md @@ -0,0 +1,38 @@ +--- +title: KeyboardLayoutMap:size 属性 +slug: Web/API/KeyboardLayoutMap/size +l10n: + sourceCommit: 33d8f835c12481741d0008c1ded4b91634e60d1c +--- + +{{SeeCompatTable}}{{APIRef("Keyboard API")}} + +{{domxref("KeyboardLayoutMap")}} 接口的 **`size`** 只读属性返回映射中的元素数量。 + +该属性与 {{jsxref("Map.prototype.size")}} 相同。 + +## 值 + +一个数字。 + +## 示例 + +以下示例获取英文 QWERTY 键盘上位置或布局特定字符串及其关联键盘代码的数量。 + +```js +navigator.keyboard.getLayoutMap().then((keyboardLayoutMap) => { + console.log(keyboardLayoutMap.size); +}); +``` + +## 规范 + +{{Specifications}} + +## 浏览器兼容性 + +{{Compat}} + +## 参见 + +- {{jsxref("Map.prototype.size")}} From 968b99c0d6f7831db1ac299a3af444868f39a169 Mon Sep 17 00:00:00 2001 From: skyclouds2001 <95597335+skyclouds2001@users.noreply.github.com> Date: Wed, 9 Oct 2024 12:01:51 +0800 Subject: [PATCH 2/2] Update files/zh-cn/web/api/keyboardlayoutmap/size/index.md --- files/zh-cn/web/api/keyboardlayoutmap/size/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/zh-cn/web/api/keyboardlayoutmap/size/index.md b/files/zh-cn/web/api/keyboardlayoutmap/size/index.md index b8e2af670e2321..6490e1545a1617 100644 --- a/files/zh-cn/web/api/keyboardlayoutmap/size/index.md +++ b/files/zh-cn/web/api/keyboardlayoutmap/size/index.md @@ -9,7 +9,7 @@ l10n: {{domxref("KeyboardLayoutMap")}} 接口的 **`size`** 只读属性返回映射中的元素数量。 -该属性与 {{jsxref("Map.prototype.size")}} 相同。 +该属性与 {{jsxref("Map.prototype.size")}} 相似。 ## 值