JavaScript四大家族之event家族

event是javascript 元素对象的事件处理程序function(event){}所拥有的事件对象其中最主要(用的最多)的属性是

 

event对象存在兼容性。IE678的event对象为Window.event,其他浏览器为event,兼容写法为var event = event || window.event;

 

clientX        (距离浏览器左侧的距离)

 

clientY        (距离浏览器顶部的距离)

 

pageX        (距离文档——document左侧的距离)

 

pageY        (距离文档——document顶部的距离)

 

screenX        (距离客户端屏幕左侧的距离)

 

screenY        (距离客户端屏幕顶部的距离)

 

当然event还有一些其他属性如altkey(Alt键是否被按下)等属性,详情请查看http://www.w3school.com.cn/jsref/dom_obj_event.asp

 

posted @ 2017-08-09 18:52  Gxqsd  阅读(142)  评论(0编辑  收藏  举报