x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>蜜蜂教程(mifengjc.com)</title>
6
<script type="text/javascript">
7
function getEventType(event) {
8
alert(event.type);
9
}
10
</script>
11
</head>
12
<body onmousedown="getEventType(event)">
13
14
<p>在文档中点击某个位置。消息框会提示你触发的事件类型。</p>
15
16
</body>
17
</html>