阻止页面重新加载,但允许使用jquery或php关闭页面

时间:2016-01-28 21:36:07

标签: javascript php jquery onbeforeunload

我的问题几乎与这个较旧的主题正好相反: allow reload but not page closing using javascript/jquery

我需要能够警告用户不要重新加载,但允许他们在没有警告的情况下关闭浏览器选项卡/窗口。

我擅长PHP,但对js / jquery来说很新,并且很想能够实现这一点。 我目前正在这样做,但它在关闭和卸载时都会发出警告(预期但不需要):

<script type="text/javascript">
window.onbeforeunload = function() {
    return "Please do not reload this page. If you are not able to print this page, please make note of this number: <?php echo $barcode; ?> and visit http//<?php echo $_SERVER['SERVER_NAME']; ?>/resume.  Thank you!";
}

任何建议,指示或帮助的TIA -R

0 个答案:

没有答案