我曾嘗試將自定義消息返回給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 –