私のカスタムメッセージをonbeforeunloadの確認ボックスに戻そうとしましたが、デフォルトのメッセージは送信したものを変更しませんでした。window.onbeforeunloadカスタムメッセージの返信メッセージが設定されていませんでした。
window.onbeforeunload = function (event) {
event.preventDefault();
return 'You are leaving this page. Please confirm or data will be lost';
};
この変更はMDN's browser compatibility chart for this eventによるとFirefoxの46.0.1
どのブラウザ/バージョン?古いIEの場合、 'window.event.returnValue = 'valueYouTypicallyReturn''が必要です –
あなたは何が起こると思いますか? – Gabs00
@JuanMendes、私はChromeを使用しています。51.0.2704 –