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


HTML onafterprint用法及代码示例


当页面开始打印时,或者如果打印对话框已关闭,onafterprint属性将起作用。该属性与onbeforeprint属性一起使用。

用法:

<element onafterprint = "script">

属性值:该属性包含单值脚本,该脚本在调用onafterprint事件属性时起作用。此属性与<body>标记关联。

Note:此属性是HTML 5中的新增属性。

例:



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

输出:

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

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

相关用法


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