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


HTML onbeforeprint事件用法及代碼示例


當用戶發出命令以打印頁麵時,將發生onbeforeprint事件。在打印頁麵之前將顯示一個對話框。 onbeforeprint事件與onafterprint事件相反。

用法:

  • 在HTML中:
    <element onbeforeprint="myScript">
  • 在JavaScript中:
    object.onbeforeprint = function(){myScript};
  • 在JavaScript中,使用addEventListener()方法:
    object.addEventListener("beforeprint", myScript);

以下示例說明了HTML DOM中的onbeforeprint事件:


  • 例:使用HTML
    <!DOCTYPE html> 
    <!DOCTYPE html> 
    <html> 
      
    <body onbeforeprint="myFunction()"> 
        <center> 
            <h1 style="color:green"> 
              GeeksforGeeks 
          </h1> 
            <p>Try to print this page you will see a alert</p> 
            <script> 
                function myFunction() { 
                    alert("You are going to print this page"); 
                } 
            </script> 
        </center> 
    </body> 
      
    </html>

    輸出:
    發出打印命令後:

  • 例:使用JavaScript
    <!DOCTYPE html> 
    <html> 
      
    <body> 
        <center> 
            <h1 style="color:green"> 
              GeeksforGeeks 
          </h1> 
            <p>Try to print this page you will see a alert</p> 
            <script> 
                document.getElementsByTagName("BODY")[0].onbeforeprint = function() { 
                    myFunction() 
                }; 
      
                function myFunction() { 
                    alert("You are going to print this page"); 
                } 
            </script> 
      </center> 
    </body> 
      
    </html>

    輸出:
    發出打印命令後:

  • 例:在JavaScript中,使用addEventListener()方法:
    <!DOCTYPE html> 
    <html> 
      
    <body> 
        <center> 
            <h1 style="color:green"> 
              GeeksforGeeks 
          </h1> 
            <p>Try to print this page you will see a alert</p> 
      
            <script> 
                window.addEventListener("beforeprint", myFunction); 
      
                function myFunction() { 
                    alert("You are going to print this page"); 
                } 
            </script> 
        </center> 
    </body> 
      
    </html>

    輸出:
    發出打印命令後:

支持的瀏覽器:下麵列出了HTML DOM onbeforeprint事件支持的瀏覽器:

  • 穀歌瀏覽器63.0
  • IE瀏覽器
  • Firefox


相關用法


注:本文由純淨天空篩選整理自Vijay Sirra大神的英文原創作品 HTML | DOM onbeforeprint Event。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。