HTMLページで、ユーザーがクリック/押すと F5 ボタンはページを更新しますが、更新する前に関数または単純なアラートを実行します。
ユーザーは更新ボタンをクリックして押すことができます F5 または Ctrl + R。
コアJavaScript、jQueryまたはYUIを使用します。
window.onbeforeunload = function(event)
{
return confirm("Confirm refresh");
};
$(window).bind('beforeunload', function(){
return '>>>>>Before You Go<<<<<<<< \n Your custom message go here';
});
ソース: http://www.mkyong.com/jquery/how-to-stop-a-page-from-exit-or-unload-with-jquery/
デモ: http://www.mkyong.com/wp-content/uploads/jQuery/jQuery-stop-page-from-exit.html
$(window).bind("beforeunload", function(){
return confirm("Do you really want to refresh?");
});
jQuery関連のイベントは次のとおりです。
$( window ).on('unload', function( event ) {
console.log('Handler for `unload` called.');
});
私には最適です。