卸载前或浏览器窗口关闭时的jquery对话框警报

1 jquery

我有一个聊天应用程序,我希望当用户意外关闭浏览器时我想在窗口关闭之前给他一个jquery对话框警报并进行必要的清理操作.请帮助

Inc*_*udE 5

是的,以下脚本使用jQuery命名空间...

jQuery(window).bind('beforeunload', function(event) {
    event.stopPropagation();
    event.returnValue = "Attention !\nVous n'avez pas sauver vos paramètres.\nSi vous appuyer sur OK, vous perdrez les informations en cours d'utilisation...\n\nLa fenêtre est sur le point de se fermer";
    return event.returnValue;
});
Run Code Online (Sandbox Code Playgroud)