案例: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
    alert($("p:first").hasClass("intro"));
8
  });
9
});
10
</script>
11
<style type="text/css">
12
.intro
13
{
14
font-size:120%;
15
color:red;
16
}
17
</style>
18
</head>
19
20
<body>
21
<h1 id="h1">This is a heading</h1>
22
<p class="intro">This is a paragraph.</p>
23
<p>This is another paragraph.</p>
24
<button>检查第一个段落是否拥有类 "intro"</button>
25
</body>
26
</html>
27