案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script>
5
function printmsg()
6
{
7
alert("即将打印该文档!");
8
}
9
</script>
10
</head>
11
12
<body onbeforeprint="printmsg()">
13
14
<h1>请试着打印此文档。</h1>
15
<p><b>提示:</b>键盘快捷键,比如 Ctrl+P 设置页面打印。</p>
16
<p><b>注释:</b>Internet Explorer 和 Firefox 支持 onbeforeprint 属性。</p>
17
18
</body>
19
</html>
20