如何处理标准确认窗口

时间:2014-07-31 07:54:51

标签: javascript jquery

在此代码中,登录关闭比浏览器关闭更快。

$(window).on('beforeunload',function(e){
    var msg = "Close window?";
    if (e) {
        e.returnValue = msg;
        $('.exit').click();
        return msg;
    }
});

如何添加处理以在窗口中选择操作?

for example:
if(true){
    $('.exit').click();
}

我找到了一个跨浏览器的例子:     var myEvent = window.attachEvent || window.addEventListener;     var chkevent = window.attachEvent? 'onbeforeunload':'beforeunload'; ///使IE7,IE8合并

myEvent(chkevent, function(e) { // For >=IE7, Chrome, Firefox
    var confirmationMessage = 'Are you sure to leave the page?';  // a space
    (e || window.event).returnValue = confirmationMessage;
    return confirmationMessage;
});

但是我的问题仍然存在:如何在确认窗口中处理是否关闭choss?

0 个答案:

没有答案