Window:parent 属性

**Window.parent** 属性是对当前窗口或子框架父级的引用。

如果窗口没有父级,则其 parent 属性是对自身的一个引用。

当窗口加载到 <iframe><object><frame> 中时,其父级是包含该窗口的元素所在的窗口。

一个 Window<iframe> 对象。

示例

js
if (window.parent !== window.top) {
  // We're deeper than one down
}

规范

规范
HTML 标准
# dom-parent-dev

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅