x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>蜜蜂教程(mifengjc.com)</title>
6
<script>
7
function ChangeWidows() {
8
document.getElementById("p1").style.widows = document.getElementById("widows").value;
9
}
10
</script>
11
<style>
12
.othercontent {
13
width: 400px;
14
border-top: 19cm solid #c3c3c3;
15
}
16
17
@page {
18
/* 设置打印页面大小 */
19
size: 21cm 27cm;
20
margin-top: 2cm;
21
}
22
23
@media print {
24
.widows {
25
widows: 2;
26
}
27
}
28
</style>
29
</head>
30
<body>
31
32
<div class="othercontent">
33
<input id="widows" value="2" />
34
<button onclick="ChangeWidows();">修改窗口</button>
35
<p style="font-size:120%" id="p1">
36
修改窗口并且查看打印预览<br> Line 2<br> Line 3<br> Line 4<br> Line 5<br> Line 6<br> Line 7<br> Line 8<br>
37
</p>
38
<div class="othercontent"></div>
39
</div>
40
41
</body>
42
</html>