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


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