案例:jquery案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script src="/js/jquery-1.11.1.min.js"></script>
5
<script>
6
$(document).ready(function(){
7
  $("button").click(function(){
8
    $("p").remove(".italic");
9
  });
10
});
11
</script>
12
</head>
13
14
<body>
15
16
<p>This is a paragraph in the div.</p>
17
<p class="italic"><i>This is another paragraph in the div.</i></p>
18
<p class="italic"><i>This is another paragraph in the div.</i></p>
19
<button>删除 class="italic" 的所有 p 元素</button>
20
21
</body>
22
</html>
23