From 77c7e61886617430e6a7ad18ed1d30359fe2056b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=86=9C=E8=8D=AF=E5=90=9B?= <99505726+cnbilinyj@users.noreply.github.com> Date: Mon, 21 Oct 2024 21:45:16 +0800 Subject: [PATCH 1/2] Create /files/zh-cn/web/api/document/children/index.md Translate "/files/zh-cn/web/api/document/children/index.md" into Chinese --- .../zh-cn/web/api/document/children/index.md | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 files/zh-cn/web/api/document/children/index.md diff --git a/files/zh-cn/web/api/document/children/index.md b/files/zh-cn/web/api/document/children/index.md new file mode 100644 index 00000000000000..93deefdcee8121 --- /dev/null +++ b/files/zh-cn/web/api/document/children/index.md @@ -0,0 +1,44 @@ +--- +title: "Document: children 属性" +short-title: children +slug: Web/API/Document/children +page-type: web-api-instance-property +browser-compat: api.Document.children +--- + +{{ APIRef("DOM") }} + +只读的 **`children`** 属性返回一个实时的 {{domxref("HTMLCollection")}},其中包含对调用该属性的文档的所有子 {{domxref("Element", "元素")}}。 + +对于 HTML 文档,这通常只有根 `` 元素。 + +请参见 {{domxref("Element.children")}} 以获取文档中具体 HTML 元素的子元素。 + +## 值 + +一个 {{ domxref("HTMLCollection") }},它是当前文档子 DOM 元素的一个实时、有序集合。你可以通过对集合使用 {{domxref("HTMLCollection.item()", "item()")}} 方法,或者使用 JavaScript 数组风格的表示法来访问集合中的单个子节点。 + +如果文档没有元素子节点,则 `children` 是一个空列表,其 `length` 为 `0`。 + +## 示例 + +```js +document.children; +// HTMLCollection [] +// 通常只包含根 元素,即文档唯一的直接子元素 +``` + +请参见 {{domxref("Element.children")}} 以获取文档中具体 HTML 元素的子元素。 + +## 规范 + +{{Specifications}} + +## 浏览器兼容性 + +{{Compat}} + +## 另请参见 + +- {{domxref("Element.children")}} +- {{domxref("Node.childNodes")}} From fc1c7b490249370dfbd2367bbb8c37a27bf74329 Mon Sep 17 00:00:00 2001 From: A1lo Date: Mon, 4 Nov 2024 20:08:59 +0800 Subject: [PATCH 2/2] Apply suggestions from code review Co-authored-by: skyclouds2001 <95597335+skyclouds2001@users.noreply.github.com> --- files/zh-cn/web/api/document/children/index.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/files/zh-cn/web/api/document/children/index.md b/files/zh-cn/web/api/document/children/index.md index 93deefdcee8121..886c10c413c8b2 100644 --- a/files/zh-cn/web/api/document/children/index.md +++ b/files/zh-cn/web/api/document/children/index.md @@ -1,14 +1,13 @@ --- -title: "Document: children 属性" -short-title: children +title: Document:children 属性 slug: Web/API/Document/children -page-type: web-api-instance-property -browser-compat: api.Document.children +l10n: + sourceCommit: 41a8b9c9832359d445d136b6d7a8a28737badc6b --- {{ APIRef("DOM") }} -只读的 **`children`** 属性返回一个实时的 {{domxref("HTMLCollection")}},其中包含对调用该属性的文档的所有子 {{domxref("Element", "元素")}}。 +**`children`** 只读属性返回一个实时的 {{domxref("HTMLCollection")}},其中包含对调用该属性的文档的所有子{{domxref("Element", "元素", "", 1)}}。 对于 HTML 文档,这通常只有根 `` 元素。 @@ -38,7 +37,7 @@ document.children; {{Compat}} -## 另请参见 +## 参见 - {{domxref("Element.children")}} - {{domxref("Node.childNodes")}}