最新のWeb開発のチュートリアル
 

Window opener Property

<ウィンドウオブジェクト

ソースにはいくつかのテキストを書く(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>"); 
»それを自分で試してみてください

定義と使用法

openerプロパティは、ウィンドウを作成したウィンドウへの参照を返します。

でウィンドウを開くと、ウィンドウ。 open()メソッドは、ソースの内容を返すために先の窓からこのプロパティを使用することができます(parent)ウィンドウを。

Coding Tip: window.opener. close() window.opener. close()のソースを閉じます(parent)ウィンドウ。


ブラウザのサポート

プロパティ
opener はい はい はい はい はい

構文

window.opener

技術的な詳細

戻り値: ウィンドウを作成したウィンドウへの参照

<ウィンドウオブジェクト