私はセッションストレージでウィンドウを閉じようとしていますが、その動作していませんか?私にとってユーザーセッションが終了している間は、すべてのウィンドウを閉じる必要があります。
私は別の& &異なるモジュールで新しいウィンドウを開くので、私は私が作成した
<html>
<body>
<button onclick="openWin()">Open "myWindow"</button>
<button onclick="closeWin()">Close "myWindow"</button>
<script>
var my1;
function openWin() {
my1 = window.open("", "myWindow", "width=200,height=100");
alert(my1)
sessionStorage.setItem('aa',my1);
}
function closeWin() {
var retrievedObject = sessionStorage.getItem('aa');
retrievedObject.close();
}
</script>
</body>
</html>
セッション記憶域が文字列を保持しているため、参照をウィンドウに保存する方法がありません... – epascarello
しかし、ログを返すウィンドウオブジェクトをどのように@ epascarello – Arun