我想显示对话框消息以确认重定向,但是我有自己的“对话框”窗口,因此对于我来说,代码(如下所示)不适合。
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();
}
我怎样才能解决这个问题?
最佳答案
当前这是不可能的,并且是已知的安全限制。