ウィンドウを閉じる前にデータを保存するようにユーザーに依頼する
769 ワード
window.onbeforeunload = function (e) {
// return a string if you don't want to close
// the returned string will be displayed in the browser
return "Do not close please!";
// return undefined to close the TAB
return;
};
Reference
この問題について(ウィンドウを閉じる前にデータを保存するようにユーザーに依頼する), 我々は、より多くの情報をここで見つけました https://dev.to/ats1999/ask-user-to-save-the-data-before-window-close-5a2pテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol