案例:jQuery案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript" src="/js/jquery.js"></script>
4
<script type="text/javascript">
5
$(document).ready(function(){
6
  var x=0;
7
  $("p").click(function(e){
8
    $("p").animate({fontSize:"+=5px"});
9
    x++;
10
    if (x>=2)
11
      {
12
      $(this).unbind(e);
13
      }
14
  });
15
});
16
</script>
17
</head>
18
<body>
19
<p style="font-size:20px;">点击这个段落可以增加其大小。只能增加两次。</p>
20
</body>
21
</html>
22