gpt4 book ai didi

javascript - 如何在仅通过按钮关闭关闭网页时捕获事件

转载 作者:行者123 更新时间:2023-11-30 10:10:57 26 4
gpt4 key购买 nike

知道如何在仅通过按钮关闭关闭网页时捕获事件:

enter image description here

最佳答案

您可以使用 beforeunload 事件。

试试这个示例代码

 window.onbeforeunload = function (e)
{

e = e || window.event;
var y = e.pageY || e.clientY;
if (y < 0){
return "Do You really Want to Close the window ?"
}
else {
return "Refreshing this page can result in data loss.";
}

}

关于javascript - 如何在仅通过按钮关闭关闭网页时捕获事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26714639/

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