當(dāng)相關(guān)聯(lián)的文檔即將打印或預(yù)覽以進(jìn)行打印時(shí),將觸發(fā)beforeprint事件。
當(dāng)要打印頁(yè)面時(shí)執(zhí)行JavaScript :
<!DOCTYPE html> <html> <head> <title>HTML onbeforeprint 事件屬性的使用(菜鳥(niǎo)教程 cainiaoplus.com)</title> <body onbeforeprint="myFunction()"> <h1>Try to print this document</h1> <p><b>Tip:</b> Keyboard shortcuts, such as Ctrl+P sets the page to print.</p> <p><b>Note:</b> The onbeforeprint event is not supported in Safari and Opera.</p> <script> function myFunction() { alert("You are about to print this document!"); } </script> </body> </html>測(cè)試看看 ?/?
IEFirefoxOperaChromeSafari
目前只有 Internet Explorer 和 Firefox 瀏覽器支持 onbeforeprint 事件屬性。
當(dāng)將要打印頁(yè)面時(shí)(在出現(xiàn)打印對(duì)話框之前),將觸發(fā)onbeforeprint屬性。
提示: onbeforeprint屬性通常與onafterprint屬性一起使用
onbeforeprint 屬性是HTML5新屬性。
<element onbeforeprint="script">
值 | 描述 |
---|---|
script | onafterprint中執(zhí)行的腳本。 |