Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Window.self

概述

返回一个指向当前 window 对象的引用。

语法

objRef = window.self 

示例

 if (window.parent.frames[0] != window.self) {
    // 当前对象不是frames列表中的第一个时
 }

备注

window.self 几乎总是用于上面示例那样的比较,用来判断当前 window 是不是父 frameset 中的第一个 frame。

规范

HTML5

 

文档标签和贡献者

 此页面的贡献者: teoli, AlexChao
 最后编辑者: AlexChao,