案例:jquery on()     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js">
5
</script>
6
<script>
7
$(document).ready(function(){
8
  $("p").on("click",function(){
9
    alert("段落被点击了。");
10
  });
11
});
12
</script>
13
</head>
14
<body>
15
16
<p>点击这个段落。</p>
17
18
</body>
19
</html>