ページが閉じられている間にウィンドウを閉じる確認を取得する必要がある状況にあります。//コード
window.onbeforeunload=function(){
if(...)
{
return "Are you sure you want to close this window, some changes are pending?";
// need to call a callback function when a user clicks "Leave this page" button.
}
};
これにより確認ウィンドウが作成され、ユーザーが「このページを離れる」ボタンをクリックしたときにコールバック関数を呼び出す必要があります。何か案は?