案例:jquery案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script src="/js/jquery-1.11.1.min.js"></script>
5
<script>
6
$(document).ready(function()
7
  {
8
  $("button").click(function(){
9
    $("#p1").css("color","red")
10
      .slideUp(2000)
11
      .slideDown(2000);
12
  });
13
});
14
</script>
15
</head>
16
17
<body>
18
19
<p id="p1">jQuery 乐趣十足!</p>
20
<button>点击这里</button>
21
22
</body>
23
</html>
24