HTML | Atributo de evento onbeforeprint

El atributo onbeforeprint funciona cuando una página está a punto de imprimirse. El mensaje de alerta se muestra antes de que aparezca el cuadro de diálogo de impresión. El atributo onbeforeprint se utiliza con el atributo onafterprint.
Etiquetas admitidas 

Sintaxis: 
 

<element onbeforeprint = "script">

Valor de atributo: este atributo contiene un script de valor de atributo único y funciona cuando el documento está a punto de imprimirse. Este atributo es compatible con la etiqueta <body>.
Ejemplo: 
 

html

<!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>

Producción: 
 

Navegadores compatibles: los navegadores compatibles con el atributo onbeforeprint se enumeran a continuación: 
 

  • Chrome 63.0 y superior
  • explorador de Internet
  • Firefox
  • Safari: no compatible
  • Ópera: no compatible

Publicación traducida automáticamente

Artículo escrito por Mahadev99 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *