更新する前にユーザーに警告する関数を作成しました(何らかの理由で必要です)。また、実装したいのは、ユーザーがをクリックした場合に別の関数を呼び出すことですLeave this page
。ユーザーがクリックした場合、stay on this page
私は何もする必要はありません。
function warnuser()
{
return "Don't refresh the page.";
}
window.onbeforeunload = warnuser;
//if returns true call another function!
ありがとうございました。