简单教程
提交运行
代码编辑器:
<script> function getEventType(event){ alert(event.type); } </script> <body onmousedown="getEventType(event)"> <p>在文档中点击某个位置。消息框会提示你触发的事件类型</p>
运行结果: