本文介绍了FireFox不显示任何警告对话框窗口beforeunload事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 目前正在使用最新版本的Firefox桌面浏览器。尝试捕获事件之前的窗口。下面的代码适用于IE,Chrome和Safari,但不适用于Firefox。 window.addEventListener(beforeunload,function(e) { var confirmationMessage =Test Test; e.returnValue = confirmationMessage; return confirmationMessage; }); 解决方案 b You cannot show pop-up if user didn't interacted with the page before. Also, it is better to use the following code:window.onbeforeunload = function(e){ var dialogText = 'Dialog text here'; e.returnValue = dialogText; return dialogText;}; 这篇关于FireFox不显示任何警告对话框窗口beforeunload事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 09-22 01:18