实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script src="https://apps.bdimg.com/libs/jquery/2.0.0/jquery.min.js">
5
</script>
6
<script>
7
$(document).ready(function(){
8
  $("p").on("click",function(){
9
    $(this).hide();
10
  });
11
});
12
</script>
13
</head>
14
<body>
15
16
<p>如果您点击我,我会消失。</p>
17
<p>点击我,我会消失。</p>
18
<p>点击我,我也会消失。</p>
19
20
</body>
21
</html>
22