案例: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
    $("p").wrapInner(function(){
8
      return "<b></b>"
9
    });
10
  });
11
});
12
13
</script>
14
<style type="text/css">
15
div{background-color:yellow;padding:10px;}
16
</style>
17
</head>
18
19
<body>
20
<p>这是一个段落。</p>
21
<p>这是另一个段落。</p>
22
<button>用 b 元素包围每个 p 元素</button>
23
</body>
24
</html>
25