案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script>
5
function showMsg()
6
{
7
alert("您已改变浏览器窗口的尺寸!");
8
}
9
</script>
10
</head>
11
12
<body onresize="showMsg()">
13
14
<p>请试着调整浏览器窗口的大小。</p>
15
16
</body>
17
</html>
18