1

在我的网站中,我在新窗口中进行了考试,我希望如果用户关闭此窗口,如果他在确认时按“确定”,他将被重定向到其他页面。但如果按下“取消”,他应该留在那里。我正在使用的javascript如下。

/**
* This javascript file checks for the brower/browser tab action.
* It is based on the file menstioned by Daniel Melo.
* Refer: http://stackoverflow.com/questions/1921941/close-kill-the-session-when-the-browser-or-tab-is-closed
*/

var validNavigation = false;

function endSession() {

 $choice = confirm("You will exit your CSA test. Are you sure you want to close the window?");

 if ($choice)
     window.open('Result.aspx', '_blank', 'toolbar=0, scrollbars=1');
}

function wireUpEvents() {

window.onbeforeunload = function () {
    if (!validNavigation) {
        endSession();
    }
}

// Attach the event keypress to exclude the F5 refresh
$(document).bind('keypress', function (e) {
    if (e.keyCode == 116) {
        validNavigation = true;
    }
});

// Attach the event click for all links in the page
$("a").bind("click", function () {
    validNavigation = true;
});

// Attach the event submit for all forms in the page
$("form").bind("submit", function () {
    validNavigation = true;
});

// Attach the event click for all inputs in the page
$("input[type=submit]").bind("click", function () {
    validNavigation = true;
});

}

$(document).ready(function () {
wireUpEvents();
});

在这里单击“确定”按钮时,“Result.aspx”窗口会成功打开,但这里的问题是,如果用户在确认框中单击“取消”,那么窗口也会关闭。请告诉我我哪里出错了或任何替代方法。任何形式的任何帮助将不胜感激。提前致谢!!

4

1 回答 1

1

您实际上无法阻止用户离开您的页面。最后一个对话框(由浏览器控制),询问他们是想留在这个页面上还是离开,取决于他们。

您的使用confirm()只是为用户提供了一个对话框,您可以从中进行选择,但对离开的页面没有影响。如果您从 中返回一个值window.onbeforeunload,它会通过我提到的最后一个对话框提示用户,但是您无法捕获他们的选择,也无法控制它。

您无法真正阻止用户离开您的页面。

于 2013-04-23T19:37:08.553 回答