案例:jQuery案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script type="text/javascript" src="/js/jquery.js"></script>
5
<style>
6
  body { font-size:16px; font-weight:bolder; }
7
  p { margin:5px 0; }
8
</style>
9
</head>
10
<body>
11
  <div>
12
    <span>Hello</span>
13
    <p class="selected">Hello Again</p>
14
    <div class="selected">And Again</div>
15
16
    <p>And One Last Time</p>
17
  </div>
18
<script>$("div").children(".selected").css("color", "blue");</script>
19
</body>
20
</html>
21