属性

WindowBase?

此类窗口的父引用。

如果此 WindowBase 没有父对象,parent 将返回对 WindowBase 本身的引用。

IFrameElement myIFrame = new IFrameElement();
window.document.body.elements.add(myIFrame);
print(myIframe.contentWindow.parent == window) // 'true'

print(window.parent == window) // 'true'

实现

WindowBase? get parent;