gpt4 book ai didi

c# - 在 ASP.NET 中检测关闭浏览器

转载 作者:行者123 更新时间:2023-11-29 19:54:01 25 4
gpt4 key购买 nike

我有一个带有 MasterPage 和内容页面的 ASP.NET Web 应用程序,当我单击 MenuItem 打开一个新的 aspx 页面时,来自 MasterPage。如果我想关闭新页面浏览器选项卡,我想显示一个弹出窗口或对话框,提醒用户他正在关闭浏览器选项卡。我在新的 aspx 页面中使用了以下代码:

<script type="text/javascript">
$(window).bind("beforeunload", function () {
$(window).unbind("beforeunload");
return confirm("Do you really want to close?")
})
</script>

问题是,如果我还按浏览 closeTab 以外的其他按钮,则该方法有效。我想知道如何避免它。

提前谢谢。

最佳答案

是的,你应该使用这样的东西:

<script language="JavaScript" type="text/javascript">
window.onbeforeunload = confirmExit;
function confirmExit() {
return "You are about to exit the system before freezing your declaration! If you leave now and never return to freeze your declaration; then they will not go into effect and you may lose tax deduction, Are you sure you want to leave now?";
}
$(function() {
$("a").click(function() {
window.onbeforeunload = null;
});
$("input").click(function() {
window.onbeforeunload = null;
});
});
</script>

因此每次刷新页面时不会显示此消息

Link here to the source

关于c# - 在 ASP.NET 中检测关闭浏览器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16605064/

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