gpt4 book ai didi

javascript - 在浏览器关闭时获取确认框

转载 作者:行者123 更新时间:2023-11-30 18:48:33 25 4
gpt4 key购买 nike

出于上述目的,我尝试了以下代码,但这在 Mozilla 中不起作用,而且我在确认框中得到了一些额外的行:

<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8"> <title>Coordinates!</title>
<script type="text/javascript">
var myclose = false;
function ConfirmClose()
{
if (event.clientY < 0)
{
event.returnValue = 'Any message you want';
setTimeout('myclose=false',100);
myclose=true;
}
}
function HandleOnClose()
{
if (myclose==true)
alert("Window is closed");
}
</script>


</head> <body onbeforeunload="ConfirmClose()" onunload="HandleOnClose()" ><a href="#">test</a> </body></html>

你能为 Mozilla 推荐一些东西吗?

最佳答案

如果您试图在用户尝试离开页面时显示弹出窗口,这是可能的,甚至还有跨浏览器解决方案。但是,如果您尝试做的是从 javascript 进行调用以查看 firefox 是否正在退出,我认为这不可能从 javascript 进行...那么我可能又错了。

function goodbye(e) {
if(!e) e = window.event;
//e.cancelBubble is supported by IE - this will kill the bubbling process.
e.cancelBubble = true;
e.returnValue = 'You sure you want to leave?';

//e.stopPropagation works in Firefox.
if (e.stopPropagation) {
e.stopPropagation();
e.preventDefault();
}
}
window.onbeforeunload=goodbye;

source

关于javascript - 在浏览器关闭时获取确认框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4667219/

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