我想知道是否可以更改window.beforeunload
消息。网上所有的例子都是这样的:
$(window).bind('beforeunload', function() {
return 'You have unsaved changes. If you leave the page these changes will be lost.';
});
这很酷,在 Google Chrome 中会显示我的消息,但在 Firefox 中会显示默认消息。如何欺骗 Firefox 显示我的消息而不是默认消息?