案例:jQuery案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
  <style>.highlight{background-color: yellow}</style>
5
  <script type="text/javascript" src="/js/jquery.js"></script>
6
</head>
7
8
<body>
9
  <p><span>Look:</span> <span>This is some text in a paragraph.</span> <span>This is a note about it.</span></p>
10
  <script>$("p span").first().addClass('highlight');</script>
11
</body>
12
</html>
13