我想显示对话框消息以确认重定向,但我有自己的对话框窗口,因此代码(如下所示)不适合我。
window.onbeforeunload = confirmExit;
function confirmExit(e) {
return "Do you realy want to leave the page, miserable user?";
}
如果我使用,我的菜单会显示,但在我选择任何变体之前页面重定向(是/否):
window.onbeforeunload = confirmExit;
function confirmExit(e) {
return pcDialog.Show();
}
我怎样才能解决这个问题?