案例:JQ案例     状态:可编辑再运行    进入竖版
 运行结果 
AخA
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script src="/js/jquery-1.11.1.min.js">
5
</script>
6
<script>
7
$(document).ready(function(){
8
  $("p").click(function(){
9
    $(this).hide();
10
  });
11
});
12
</script>
13
</head>
14
<body>
15
<p>如果您点击我,我会消失。</p>
16
<p>点击我,我会消失。</p>
17
<p>也要点击我哦。</p>
18
</body>
19
</html>