案例: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
    $("p:first").addClass("intro note");
8
  });
9
});
10
</script>
11
<style type="text/css">
12
.intro
13
{
14
font-size:120%;
15
color:blue;
16
}
17
.note
18
{
19
background-color:yellow;
20
}
21
</style>
22
</head>
23
24
<body>
25
<h1>This is a heading</h1>
26
<p>This is a paragraph.</p>
27
<p>This is another paragraph.</p>
28
<button>向第一个 p 元素添加两个类</button>
29
</body>
30
</html>
31