onbeforeunload不适用于Firefox

时间:2016-03-07 09:38:12

标签: javascript php firefox

我需要在关闭浏览器时弹出一条消息。我在这个网站上有很多解决方案。虽然建议并验证了以下代码,但它适用于Chrome和Opera,但不适用于Firefox。执行中有什么我遗漏的吗? 需要帮忙。在此先感谢

<html>
<body>
<script type="text/javascript">
window.onbeforeunload = function (e) {
var message = "Message to Show",
e = e || window.event;

if (e) {
e.returnValue = message;
}

return message;
};
</script>
</body>
</html>

0 个答案:

没有答案