案例:jQuery案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
  <script type="text/javascript" src="/js/jquery.js"></script>
5
</head>
6
7
<body>
8
<p>This is a paragraph.</p>
9
<p>This is a paragraph.</p>
10
<p>This is a paragraph.</p>
11
<p>This is a paragraph.</p>
12
<p>This is a paragraph.</p>
13
<p>This is a paragraph.</p>
14
15
<script>
16
$("p").slice(0, 2).wrapInner("<b></b>");
17
</script>
18
19
</body>
20
</html>
21