機能を使用しています
window.onbeforeunload = function(){
if(sessionStorage.hasOwnProperty("teststatred")){
validNavigation = true;
leave_message = "You are in the middle of the test, Are you sure do you want to close the window?"
}
if (validNavigation)
{
if (!e) e = window.event;
e.cancelBubble = true;
e.returnValue = leave_message;
if (e.stopPropagation) {
e.stopPropagation();
e.preventDefault();
}
return leave_message;
}
}
Leave this page
この関数は、との 2 つのボタンのウィンドウを表示しますStay on this page
。Leave this page
ユーザーがクリックまたは「このページにとどまる」ときに機能を実行するにはどうすればよいですか?