Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: A1lo <[email protected]>
  • Loading branch information
fuchunhui and yin1999 authored Oct 29, 2024
1 parent 0001f7b commit a2ca70d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions files/zh-cn/web/api/htmlallcollection/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
- : 返回集合中项目的条数
- : 返回集合中项目的数量

## 实例方法

Expand Down
4 changes: 2 additions & 2 deletions files/zh-cn/web/api/htmlallcollection/length/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ l10n:

{{APIRef("DOM")}}

**`HTMLAllCollection.length`** 属性返回 {{domxref("HTMLAllCollection")}} 中项目的条目数
**`HTMLAllCollection.length`** 属性返回 {{domxref("HTMLAllCollection")}} 中项目的数量

##

表示 `HTMLAllCollection` 中项目条目数的整数值
表示 `HTMLAllCollection` 中项目数量的整数值

## 规范

Expand Down

0 comments on commit a2ca70d

Please sign in to comment.