From 443eb5e26838ebd21a5ad0585a0a870555a0812a Mon Sep 17 00:00:00 2001 From: Jason Ren <40999116+jasonren0403@users.noreply.github.com> Date: Thu, 24 Oct 2024 15:49:25 +0800 Subject: [PATCH] Update files/zh-cn/web/api/keyboard/lock/index.md --- files/zh-cn/web/api/keyboard/lock/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/zh-cn/web/api/keyboard/lock/index.md b/files/zh-cn/web/api/keyboard/lock/index.md index 2a0d7b91658ffd..3b0dcfcb57a0df 100644 --- a/files/zh-cn/web/api/keyboard/lock/index.md +++ b/files/zh-cn/web/api/keyboard/lock/index.md @@ -52,7 +52,7 @@ navigator.keyboard.lock(); ### 捕获指定的按键 -以下示例捕获“W”、“A”、“S”和“D”键。无论按键时使用了哪些修饰键,它都会捕获这些键。假设采用标准美国 QWERTY 布局,注册`"KeyW"` 可确保“W”、“Shift+“W”、Control+“W”、Control+Shift+“W”以及所有其他带有“W”的键修饰键组合都发送到应用程序。这同样适用于 `"KeyA"`、`"KeyS"`和 `"KeyD"`。 +以下示例捕获“W”、“A”、“S”和“D”键。无论按键时使用了哪些修饰键,它都会捕获这些键。假设采用标准美国 QWERTY 布局,注册 `"KeyW"` 可确保“W”、“Shift+“W”、Control+“W”、Control+Shift+“W”以及所有其他带有“W”的键修饰键组合都发送到应用程序。这同样适用于 `"KeyA"`、`"KeyS"`和 `"KeyD"`。 ```js navigator.keyboard.lock(["KeyW", "KeyA", "KeyS", "KeyD"]);