例
寫一些文字到源(parent)窗口:
// Open a new window
var myWindow = window.open("", "myWindow",
"width=200, height=100");
// Write some text in the new window
myWindow.document.write("<p>This is 'myWindow'</p>");
// Write
some text in the window that created the new window
myWindow.opener.document.write("<p>This is the source window!</p>");
試一試» 定義和用法
揭幕戰屬性返回到創建該窗口的窗口的引用。
當打開與一個窗口的窗口。 open()方法,你可以使用這個屬性從目標窗口返回源的詳細信息(parent)窗口。
Coding Tip: window.opener. close() window.opener. close()將關閉源(parent)窗口。
瀏覽器支持
屬性 | |||||
---|---|---|---|---|---|
opener | 是 | 是 | 是 | 是 | 是 |
句法
window.opener
技術細節
返回值: | 的引用創建窗口的窗口 |
---|
<窗口對象