一、事件参数
function(event){}
1、停止冒泡事件 event.stopPropagation()
<=> return false;
2、阻止默认行为
event.preventDefault() <=> return
false;
3、事件类型 event.type
比如click、dbclick、mouseover
4、获取触发事件的元素 event.target
5、光标相对于页面的x,y坐标
event.pageX、event.pageY
6、鼠标的左中右(1,2,3)键 event.which
原文地址:http://www.cnblogs.com/gossip/p/3760695.html