親画面(test1.html)⇒子画面(test2.html)⇒孫画面(test3.html)
親画面または子画面が閉じられた再に、孫画面も閉じられるように
Javascriptで実装するにはどうしたらいいでしょうか?
・親画面javascript
javascript
1var subWindow 2$("[id^=id1]").click(function () { 3 subWindow = window.open("test2.html", "test2");//子画面を開く 4 subWindow.focus(); 5}); 6// 親画面CLOSE処理 7 window.addEventListener('unload', function (event) { 8 if (typeof subWindow != "undefined") { 9 subWindow.close();//親画面を閉じたら、子画面も閉じる 10 } 11 });
・子画面javascript
javascript
1var subWindow2 2$("[id^=id2]").click(function () { 3 subWindow2 = window.open("test3.html", "test3");//孫画面を開く 4 subWindow2.focus(); 5});
どなたかご教授を宜しくお願いします。
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/01 08:14