HTML onafterprint 事件属性
HTML onafterprint 事件属性触发于页面开始打印或者 HTML 文档中打印对话框被关闭时。
语法
以下是语法 −
<tagname onafterprint=”script”></tagname>
让我们看一个 HTML onafterprint 事件属性示例−
示例
<!DOCTYPE html> <html> <head> <style> body { color: #000; height: 100vh; background-color: #FBAB7E; background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%); text-align: center; padding: 20px; } p { font-size: 1.1rem; } </style> </head> <body onafterprint="get()"> <h1>HTML onafterprint Event Attribute Demo</h1> <p>I'm a paragraph HTML element with some dummy text.</p> <p style="color:#db133a;">Now try to print this document.</p> <div class="show"></div> <script> function get() { document.body.style.background = "lightblue"; } </script> </body> </html>
输出
现在,尝试使用 ctrl + p 打印文档,观察 onafterprint 事件属性如何执行。
广告