案例:jQuery案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript" src="/js/jquery.js"></script>
4
<script type="text/javascript">
5
x=0;
6
$(document).ready(function(){
7
$(window).resize(function() {
8
  $("span").text(x+=1);
9
});
10
11
});
12
</script>
13
</head>
14
<body>
15
<p>窗口大小被调整过 <span>0</span> 次。</p>
16
<p>请试着重新调整浏览器窗口的大小。</p>
17
</body>
18
</html>
19