From 9afc692c02d1169fd3b74a76f2483eda1dba3102 Mon Sep 17 00:00:00 2001 From: 720 <71604450+T34-active@users.noreply.github.com> Date: Tue, 20 Aug 2024 20:14:46 +0800 Subject: [PATCH] [zh-cn]: update the translation of Window `length` property (#23169) --- files/zh-cn/web/api/window/length/index.md | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/files/zh-cn/web/api/window/length/index.md b/files/zh-cn/web/api/window/length/index.md index 27257d3c076759..e402cff6c432c3 100644 --- a/files/zh-cn/web/api/window/length/index.md +++ b/files/zh-cn/web/api/window/length/index.md @@ -1,27 +1,23 @@ --- -title: window.length +title: Window:length 属性 slug: Web/API/Window/length +l10n: + sourceCommit: 62cedc63226017e9e7d0718b6fea3529ca8dbf37 --- -{{ApiRef}} +{{APIRef}} -## 概述 +返回窗口中框架的数量(包括 {{HTMLElement("frame")}} 和 {{HTMLElement("iframe")}} 元素)。 -返回当前窗口中包含的框架数量 (框架包括`frame`和`iframe`两种元素). +## 值 -## 语法 - -```plain -framesCount = window.length; -``` - -- `framesCount`就是该窗口中框架的数量。 +数字。 ## 示例 ```js if (window.length) { - // 该窗口包含至少一个子框架 + // 这是一个包含子框架的文档。 } ```