From a2ca70d6425651c8a6644a4b2629c31284a5e2f8 Mon Sep 17 00:00:00 2001 From: Chunhui Fu Date: Tue, 29 Oct 2024 19:23:53 +0800 Subject: [PATCH] Apply suggestions from code review Co-authored-by: A1lo --- files/zh-cn/web/api/htmlallcollection/index.md | 4 ++-- files/zh-cn/web/api/htmlallcollection/length/index.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/files/zh-cn/web/api/htmlallcollection/index.md b/files/zh-cn/web/api/htmlallcollection/index.md index 58246f267e8c61..506ecd8ad067f1 100644 --- a/files/zh-cn/web/api/htmlallcollection/index.md +++ b/files/zh-cn/web/api/htmlallcollection/index.md @@ -7,14 +7,14 @@ l10n: {{APIRef("DOM")}}{{Deprecated_Header}} -**`HTMLAllCollection`** 接口表示*所有*文档元素的结合,通过索引(类似于数组)和元素的 [`id`](/zh-CN/docs/Web/HTML/Global_attributes/id) 访问。它由 {{domxref("document.all")}} 属性返回。 +**`HTMLAllCollection`** 接口表示*所有*文档元素(通过索引(类似于数组)和元素的 [`id`](/zh-CN/docs/Web/HTML/Global_attributes/id) 访问)的集合。它由 {{domxref("document.all")}} 属性返回。 `HTMLAllCollection` 的形态与 {{domxref("HTMLCollection")}} 非常相似,但两者在行为上存在许多细微差异,例如,`HTMLAllCollection` 可以作为函数调用,并且其 `item()` 方法可以使用表示元素 `id` 和 `name` 属性的字符串调用。 ## 实例属性 - {{domxref("HTMLAllCollection.length")}} {{ReadOnlyInline}} - - : 返回集合中项目的条数。 + - : 返回集合中项目的数量。 ## 实例方法 diff --git a/files/zh-cn/web/api/htmlallcollection/length/index.md b/files/zh-cn/web/api/htmlallcollection/length/index.md index b5e9d2d562fb37..aa501bd3df50cb 100644 --- a/files/zh-cn/web/api/htmlallcollection/length/index.md +++ b/files/zh-cn/web/api/htmlallcollection/length/index.md @@ -7,11 +7,11 @@ l10n: {{APIRef("DOM")}} -**`HTMLAllCollection.length`** 属性返回 {{domxref("HTMLAllCollection")}} 中项目的条目数。 +**`HTMLAllCollection.length`** 属性返回 {{domxref("HTMLAllCollection")}} 中项目的数量。 ## 值 -表示 `HTMLAllCollection` 中项目条目数的整数值。 +表示 `HTMLAllCollection` 中项目数量的整数值。 ## 规范