案例:jquery案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script src="/js/jquery-1.11.1.min.js">
5
</script>
6
<script>
7
$(document).ready(function(){
8
  $("p").filter(".intro").css("background-color","yellow");
9
});
10
</script>
11
</head>
12
<body>
13
14
<h1>欢迎来到我的主页</h1>
15
<p>我是唐老鸭。</p>
16
<p class="intro">我住在 Duckburg。</p>
17
<p class="intro">我爱 Duckburg。</p>
18
<p>我最好的朋友是 Mickey。</p>
19
20
</body>
21
</html>
22