- JavaScript
-
2011-04-28 - 更新:2012-03-23
Internet Explorerにてポップアップ等で新規ウィンドウを開いた際、
開いた子ウィンドウから呼び出し元の親ウィンドウのページを参照・操作するには
window.openerオブジェクトを使用します。
例)呼び出し元ページのid="test"
が割り振られたチェックボックスにチェックを入れる
if(window.opener.document != null) { window.opener.document.getElementById("test").checked = true; }
![](https://k-sugi.sakura.ne.jp/wp-content/themes/chic_grid3/images/icon-tag.png)