案例: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").toggle(function(){
7
    $("p").wrap("<div></div>");
8
    }, function(){
9
    $("p").unwrap();
10
  });
11
});
12
13
</script>
14
<style type="text/css">
15
div{background-color:yellow;padding:10px;}
16
</style>
17
</head>
18
<body>
19
20
<p>This is a paragraph.</p>
21
<button>包裹或解开 p 元素</button>
22
23
</body>
24
</html>
25