From 6556069b1a7ec7db19d6ad02f67c38d587174c50 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: Tue, 22 Oct 2024 17:23:58 +0800 Subject: [PATCH 1/2] append lastElementChild translate to Chinese --- files/zh-cn/web/api/lastelementchild/index.md | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 files/zh-cn/web/api/lastelementchild/index.md diff --git a/files/zh-cn/web/api/lastelementchild/index.md b/files/zh-cn/web/api/lastelementchild/index.md new file mode 100644 index 00000000000000..2f07dffd466f88 --- /dev/null +++ b/files/zh-cn/web/api/lastelementchild/index.md @@ -0,0 +1,36 @@ +--- +title: "文档:lastElementChild 属性" +short-title: lastElementChild +slug: Web/API/Document/lastElementChild +--- + +{{ APIRef("DOM") }} + +**`Document.lastElementChild`** 只读属性返回文档的最后一个子元素 {{domxref("Element")}},如果没有子元素,则返回 `null`。 + +对于 HTML 文档,这通常是唯一的子元素,即根 `` 元素。 + +有关文档中特定元素的最后一个子元素,请参见 {{domxref("Element.lastElementChild")}}。 + +## 值 + +根 `` 元素。 + +## 示例 + +```js +document.lastElementChild; +// 返回根 元素,即文档的唯一子元素 +``` + +## 规范 + +{{Specifications}} + +## 浏览器兼容性 + +{{Compat}} + +## 参见 + +- {{domxref("Element.lastElementChild")}} \ No newline at end of file From 213413db1afa0c4cd1c086c623a6bfdba9d4fc4c 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: Wed, 23 Oct 2024 16:56:46 +0800 Subject: [PATCH 2/2] Update files/zh-cn/web/api/lastelementchild/index.md Apply MDN-linter format correction Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- files/zh-cn/web/api/lastelementchild/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/zh-cn/web/api/lastelementchild/index.md b/files/zh-cn/web/api/lastelementchild/index.md index 2f07dffd466f88..a81412f8937123 100644 --- a/files/zh-cn/web/api/lastelementchild/index.md +++ b/files/zh-cn/web/api/lastelementchild/index.md @@ -1,5 +1,5 @@ --- -title: "文档:lastElementChild 属性" +title: 文档:lastElementChild 属性 short-title: lastElementChild slug: Web/API/Document/lastElementChild ---