案例: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").remove();
8
  });
9
});
10
</script>
11
</head>
12
<body>
13
<p>这是一个段落。</p>
14
<p>这是另一个段落。</p>
15
<button>删除所有 p 元素</button>
16
</body>
17
</html>
18