0

如何阻止此事件在浏览器刷新时发生?这是代码:

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\"";

    ?>      
}

如何阻止此事件在浏览器刷新时发生?

4

1 回答 1

0

使用 cookie 或本地存储来存储您已经完成的值。然后,如果您想再次执行此操作,只需将该值设置为 false。

于 2013-09-15T19:34:12.667 回答