当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML onbeforeunload用法及代码示例


onbeforeunload事件在文档即将被卸载时运行。此事件用于允许在对话框中显示消息,以通知用户他/她想停留或离开当前页面。

用法:

<element onbeforeunload = "script">

属性值:此属性包含单值脚本,并且在调用onbeforeunload事件时运行。 <body>标签支持此事件属性。

Example:

<!DOCTYPE html> 
<html> 
    <head> 
        <title>onbeforeunload attribute</title> 
        <style> 
            body { 
                text-align:center; 
            } 
            h1 { 
                color:green; 
            } 
            a { 
                text-decoration:none; 
                font-weight:bold; 
            } 
        </style> 
    </head> 
    <body onbeforeunload="return myFunction()"> 
        <h1>GeeksforGeeks</h1> 
        <h2>onbeforeunload attribute</h2>    
        <a href="https://www.geeksforgeeks.org">Go to GeeksforGeeks</a> 
        <script> 
        function myFunction() { 
            return "This document is ready to load"; 
        } 
        </script> 
    </body> 
</html>

输出:

支持的浏览器:下面列出了onbeforeunload属性支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Safari
  • Opera 15.0及更高版本

相关用法


注:本文由纯净天空筛选整理自Mahadev99大神的英文原创作品 HTML | onbeforeunload Event Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。