小码哥的IT人生

onafterprint 事件

JavaScript基础 2022-06-08 11:54:53小码哥的IT人生shichen

onafterprint 事件

实例

当页面开始打印时执行 JavaScript:

<body onafterprint="myFunction()">

完整实例:

<!DOCTYPE html>
<html>
<body onafterprint="myFunction()">
<h1>请尝试打印此文档</h1>
<p><b>提示:</b>键盘快捷键,例如 Ctrl+P,可设置要打印的页面。</p>
<p><b>注释:</b>Safari 和 Opera 不支持 onafterprint 事件。</p>
<p><b>注释:</b>在 IE 中,onafterprint 事件发生在打印对话框之前,而不是之后。</p>
<script>
function myFunction() {
  alert("This document is now being printed");
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

定义和用法

onafterprint 事件发生在页面已开始打印时,或者如果打印对话框已关闭。

提示: onafterprint 事件与 onbeforeprint 事件相反。

浏览器支持

事件 Chrome IE Firefox Safari Opera
onafterprint 63 支持 支持 不支持 不支持

语法

在 HTML 中:

<element onafterprint="myScript">

完整实例:

<!DOCTYPE html>
<html>
<body onafterprint="myFunction()">
<p>This example demonstrates how to assign an "onafterprint" event to a body element.</p>
<h1>请尝试打印此文档</h1>
<p><b>提示:</b>键盘快捷键,例如 Ctrl+P,可设置要打印的页面。</p>
<p><b>注释:</b>Safari 和 Opera 不支持 onafterprint 事件。</p>
<p><b>注释:</b>在 IE 中,onafterprint 事件发生在打印对话框之前,而不是之后。</p>
<script>
function myFunction() {
  alert("This document is now being printed");
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

在 JavaScript 中:

object.onafterprint = function(){myScript};

完整实例:

<!DOCTYPE html>
<html>
<body>
<p>This example uses the HTML DOM to assign an "onafterprint" event to a body element.</p>
<h1>请尝试打印此文档</h1>
<p><b>提示:</b>键盘快捷键,例如 Ctrl+P,可设置要打印的页面。</p>
<p><b>注释:</b>Safari 和 Opera 不支持 onafterprint 事件。</p>
<p><b>注释:</b>在 IE 中,onafterprint 事件发生在打印对话框之前,而不是之后。</p>
<script>
document.getElementsByTagName("BODY")[0].onafterprint = function() {myFunction()};
function myFunction() {
  alert("This document is now being printed");
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

在 JavaScript 中,使用 addEventListener() 方法:

object.addEventListener("afterprint", myScript);

完整实例:

<!DOCTYPE html>
<html>
<body>
<p>This example uses the addEventListener() method to attach an "afterprint" event to the window object.</p>
<h1>请尝试打印此文档</h1>
<p><b>提示:</b>键盘快捷键,例如 Ctrl+P,可设置要打印的页面。</p>
<p><b>注释:</b>Safari 和 Opera 不支持 afterprint 事件。</p>
<p><b>注释:</b>在 IE 中,afterprint 事件发生在打印对话框之前,而不是之后。</p>
<script>
window.addEventListener("afterprint", myFunction);
function myFunction() {
  alert("This document is now being printed");
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

注释:Internet Explorer 8 或更早的版本不支持 addEventListener() 方法

技术细节

冒泡: 不支持
可取消: 不支持
事件类型: Event
支持的 HTML 标签: <body>
DOM 版本: Level 3 Events

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024