當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。