返回弹出窗口时捕获确定按钮 [离开此页面或留在此页面]

Capture ok button on return pop-up [Leave this page or stay on this page]

本文关键字:离开 按钮 窗口 返回      更新时间:2023-09-26

我想在弹出窗口中捕获"确定"按钮,该按钮在尝试关闭浏览器窗口时出现在返回语句上,以便当我选择离开页面时,我可以清除会话。谁能建议是否可能?

您可能希望将 ajax 请求发送到清除用户会话的页面 - 例如使用 jquery。

confirm_and_logout = function() {
    if (confirm("Do you really want to leave ?")) {
        $.ajax({
            method:"POST",
            url:"logout_page.php"
        });
        return true;
    }
    else return false;
}
window.onbeforeunload = function () {
    return confirm_and_logout();
}