diff --git a/files/zh-cn/web/api/window/length/index.md b/files/zh-cn/web/api/window/length/index.md index 27257d3c076759..ba4018069ac4b4 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) { - // 该窗口包含至少一个子框架 + // 这是一个包含子框架的文档。 } ```