gpt4 book ai didi

javascript - 使用 JavaScript/Jquery 关闭 .aspx

转载 作者:行者123 更新时间:2023-12-03 10:59:00 24 4
gpt4 key购买 nike

我已经在其他链接上搜索过这个问题,例如
window.close and self.close do not close the window in Chrome等等但无法解决
我想使用下面的代码关闭页面,但它不适用于任何浏览器。

我的网址如下:

http://server/solutionName/Confirmation.aspx

警告:

Scripts may close only the windows that were opened by it.

HTML:

 <img alt="Close" src="images/close.png" onclick="return confirm_delete();">

脚本:

  function confirm_delete()
{
if (confirm("Are you sure you want to close?") == true)
window.close();

else
return false;
}


这是屏幕截图: enter image description here

最佳答案

尝试以下代码行

        var Browser = navigator.appName;
var indexB = Browser.indexOf('Explorer');
if (indexB > 0) {

var indexV = navigator.userAgent.indexOf('MSIE') + 5;
var Version = navigator.userAgent.substring(indexV, indexV + 1);

if (Version >= 7) {
window.open('', '_self', '');
window.close();
}
else if (Version == 6) {
window.opener = null;
window.close();
}
else {
window.opener = '';
window.close();
}
}
else {
window.close();
}

关于javascript - 使用 JavaScript/Jquery 关闭 .aspx,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28166936/

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