gpt4 book ai didi

javascript - 无法关闭浏览器中其他打开的选项卡

转载 作者:行者123 更新时间:2023-11-28 03:37:39 25 4
gpt4 key购买 nike

您好,请检查以下代码,我正在尝试使用名称打开标签页然后尝试关闭该选项卡但无法关闭或者谁能​​告诉我们如何在关闭父选项卡时从父选项卡(url)关闭打开的所有选项卡(url1,url2) firebug 中的错误是 my_window 未定义

 <form name="submitForm1"   target="my_window"  method="POST" action="http://localhost:8080/ADDMIBREP/">
<input type="hidden" name="uname" value="uname">
<a HREF="javascript:document.submitForm1.submit();">ADDMIBREPORT</a>
</form>
<a HREF="javascript: closepopup() ">remove</a>
</body>
<script>

function closepopup()
{
alert("hi");

if(false == my_window.closed)
{
my_window.close ();
}
else
{
alert('Window already closed!');
}
} <script>

最佳答案

<a HREF="javascript:window.close()">remove</a>

var my_first_window = window.open('test/test.html');
var my_second_window = window.open('test/test1.html');

window.onunload = function() {
if(!my_first_window.closed)
my_first_window.close();
if(!my_second_window.closed)
my_second_window.close();
}

关于javascript - 无法关闭浏览器中其他打开的选项卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13193628/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com