javascript语句语义大全(7)

1. 事件

onmousedown——鼠标按下事件

当鼠标按下的时候触发,根据鼠标不同的按键会有不同的值传入,左键0,滚轮1,右键2,不同浏览器可能有不同。

onmousemove——当鼠标移动的时候触发

onkeydown——当键盘按键的时候触发

2. 元素坐标

相对于事件源对象的偏移量,也就是元素坐标,相对坐标
console.log(event.offsetX+','+event.offsetY)
在可视区域的位置,浏览器坐标
console.log(event.clientX+','+event.clientY)
整个屏幕坐标
console.log(event.screenX+','+event.screenY)

3. 阻止冒泡

//event.stopPropagation();
//event.cancelBubble=true;//IE方式

4. 监听事件

id1.addEventListener('click',function(){
alert(1);
},true);

原文地址:https://www.cnblogs.com/thestudy/p/5628052.html