onbeforeprint 事件
JavaScript基础 2022-06-08 11:56:26小码哥的IT人生shichen
onbeforeprint 事件
实例
在页面即将打印时执行 JavaScript:
<body onbeforeprint="myFunction()">
完整实例:
<!DOCTYPE html>
<html>
<body onbeforeprint="myFunction()">
<h1>请尝试打印此文档</h1>
<p><b>提示:</b>键盘快捷键,例如 Ctrl+P,可设置要打印的页面。</p>
<p><b>注释:</b>Safari 和 Opera 不支持 onbeforeprint 事件。</p>
<script>
function myFunction() {
alert("You are about to print this document!");
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
浏览器支持
事件 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
onbeforeprint | 63 | 支持 | 支持 | 不支持 | 不支持 |
语法
在 HTML 中:
<element onbeforeprint="myScript">
完整实例:
<!DOCTYPE html>
<html>
<body onbeforeprint="myFunction()">
<p>本例演示如何将 "onbeforeprint" 事件分配给 body 元素。</p>
<h1>请尝试打印此文档</h1>
<p><b>提示:</b>键盘快捷键,例如 Ctrl+P,可设置要打印的页面。</p>
<p><b>注释:</b>Safari 和 Opera 不支持 onbeforeprint 事件。</p>
<script>
function myFunction() {
alert("You are about to print this document!");
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
在 JavaScript 中:
object.onbeforeprint = function(){myScript};
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>本例使用 HTML DOM 将 "onbeforeprint" 事件分配给 body 元素。</p>
<h1>请尝试打印此文档</h1>
<p><b>提示:</b>键盘快捷键,例如 Ctrl+P,可设置要打印的页面。</p>
<p><b>注释:</b>Safari 和 Opera 不支持 onbeforeprint 事件。</p>
<script>
document.getElementsByTagName("BODY")[0].onbeforeprint = function() {myFunction()};
function myFunction() {
alert("You are about to print this document!");
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
在 JavaScript 中,使用 addEventListener() 方法:
object.addEventListener("beforeprint", myScript);
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>本使用 addEventListener() 方法将 "beforeprint" 事件附加到 window 对象。</p>
<h1>请尝试打印此文档</h1>
<p><b>提示:</b>键盘快捷键,例如 Ctrl+P,可设置要打印的页面。</p>
<p><b>注释:</b>Safari 和 Opera 不支持 onbeforeprint 事件。</p>
<script>
window.addEventListener("beforeprint", myFunction);
function myFunction() {
alert("You are about to print this document!");
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
注释:Internet Explorer 8 或更早的版本不支持 addEventListener() 方法。
技术细节
冒泡: | 不支持 |
---|---|
可取消: | 不支持 |
事件类型: | Event |
支持的 HTML 标签: | <body> |
DOM 版本: | Level 3 Events |