ブラウザの更新時にこのイベントが発生しないようにするにはどうすればよいですか? コードは次のとおりです。
if ($("body").attr('onbeforeunload') == null) {
if (window.event) {
// IE and Chrome use this
$("body").attr('onbeforeunload', 'CatchLeavePage(event)');
<?php
// Log out when browser is closed
echo " location.href=\"/logout.php\"";
?>
}
ブラウザの更新時にこのイベントが発生しないようにするにはどうすればよいですか?