案例: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
  $("button").click(function(){
7
    $("body").append($("p").detach());
8
  });
9
 $("p").click(function(){
10
    $(this).animate({fontSize:"+=1px"})
11
  });
12
});
13
</script>
14
</head>
15
<body>
16
<p>在本段落移动之后,试着点击该段落,请注意它保留了 click 事件。</p>
17
<button>移动 p 元素</button>
18
</body>
19
</html>
20