首页  >  文章  >  web前端  >  当HTML文档即将被卸载时执行脚本?

当HTML文档即将被卸载时执行脚本?

PHPz
PHPz转载
2023-08-20 12:09:31684浏览

当HTML文档即将被卸载时执行脚本?

当文档准备卸载时,onbeforeunload 事件属性会触发。

示例

您可以尝试运行以下代码来实现 onbeforeunload 属性 −

<!DOCTYPE html>
<html>
   <body onbeforeunload = "return display()">
      <p>Close this window or press F5.</p>
      <script>
         function display() {
            return "Wanna stay here or leave?";
         }
      </script>
   </body>
</html>

以上是当HTML文档即将被卸载时执行脚本?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除