From 7e505beec1ac0e91df521ff796bca9dd310bad0e Mon Sep 17 00:00:00 2001 From: skyclouds2001 <95597335+skyclouds2001@users.noreply.github.com> Date: Tue, 10 Sep 2024 19:48:58 +0800 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Jason Ren <40999116+jasonren0403@users.noreply.github.com> --- files/zh-cn/web/api/broadcastchannel/close/index.md | 2 +- .../web/api/broadcastchannel/messageerror_event/index.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/files/zh-cn/web/api/broadcastchannel/close/index.md b/files/zh-cn/web/api/broadcastchannel/close/index.md index aa719c18ad7fbc..f2dc336436482e 100644 --- a/files/zh-cn/web/api/broadcastchannel/close/index.md +++ b/files/zh-cn/web/api/broadcastchannel/close/index.md @@ -7,7 +7,7 @@ l10n: {{APIRef("BroadCastChannel API")}} {{AvailableInWorkers}} -{{domxref("BroadcastChannel")}} 接口的 **`close()`** 方法终止与底层通道的连接,从而允许对对象进行垃圾回收。这是必须执行的步骤,因为浏览器没有其他方法可以知道不再需要此通道。 +{{domxref("BroadcastChannel")}} 接口的 **`close()`** 方法终止与底层频道的连接,从而允许对对象进行垃圾回收。这是必须执行的步骤,因为浏览器没有其他方法可以知道不再需要此频道。 ## 语法 diff --git a/files/zh-cn/web/api/broadcastchannel/messageerror_event/index.md b/files/zh-cn/web/api/broadcastchannel/messageerror_event/index.md index 031336ada74eda..e1c36a9c124531 100644 --- a/files/zh-cn/web/api/broadcastchannel/messageerror_event/index.md +++ b/files/zh-cn/web/api/broadcastchannel/messageerror_event/index.md @@ -7,7 +7,7 @@ l10n: {{APIRef("BroadCastChannel API")}}{{AvailableInWorkers}} -{{domxref("BroadcastChannel")}} 接口的 **`messageerror`** 事件在无法反序列化的消息到达通道时触发。 +{{domxref("BroadcastChannel")}} 接口的 **`messageerror`** 事件在无法反序列化的消息到达频道时触发。 ## 语法 @@ -55,7 +55,7 @@ channel.addEventListener("messageerror", (event) => { }); ``` -相同,但使用 `onmessage` 和 `onmessageerror` 事件处理器属性: +下述代码也实现了相同需求,但使用 `onmessage` 和 `onmessageerror` 事件处理器属性: ```js const channel = new BroadcastChannel("example-channel");