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


HTML onbeforeprint用法及代码示例


onbeforeprint属性在要打印页面时起作用。在出现打印对话框之前显示警告消息。 onbeforeprint属性与onafterprint属性一起使用。

用法:

<element onbeforeprint = "script">

属性值:该属性包含单个属性值脚本,并且在要打印文档时起作用。 <body>标记支持此属性。

Example:

<!DOCTYPE html> 
<html> 
    <head> 
        <title>onbeforeprint attribute</title> 
        <style> 
            body { 
                text-align:center; 
            } 
            h1 { 
                color:green; 
            } 
        </style> 
    </head> 
    <body onbeforeprint="myFunction()"> 
        <h1>GeeksforGeeks</h1> 
        <h2>onbeforeprint attribute</h2> 
        <!-- The script run when page will ready to print -->
        <script> 
            function myFunction() { 
                alert("This document is ready to be printed"); 
            } 
        </script> 
    </body> 
</html>

输出:

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

  • Chrome 63.0及以上
  • IE浏览器
  • Firefox
  • Safari:不支持
  • Opera:不支持

相关用法


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