封装自己的js工具_Event

说到浏览器中的event,相信不少人都很头疼,ie的event大部分时候都可以获取到,因为ie的event是全局的

而firefox的event是局部的,用起来不太方便,这个时候我们就要自己组装一下常用的event操作了,封装成类便于重用

=============================

/**
类 Event
用法:
Event.getEvent();获取 ie,firefox的event
Event.getTarget();获取ie的srcElement或firefox的target
Event.isIe();是否为ie
Event.clientX(); 获取ie,fox的鼠标x坐标
Event.clientY();获取 ie,fox的鼠标y坐标
*/
var Event=new function(){
 this.toString=function(){
  return this.getEvent();
 }
 //获取 事件
 this.getEvent=function(){
  var ev=window.event;
  if(!ev){
   var c=this.getEvent.caller;
   while(c){
    ev=c.arguments[0];
    if(ev && Event ==ev.constructor)
     break;
    c=c.caller;
   }
  }
  return ev;
 };
 //获取 事件源
 this.getTarget=function(){
  var ev=this.getEvent();
  return this.isIe()?ev.srcElement:ev.target;
 }
 //是否为ie
 this.isIe=function(){
  return document.all?true:false;
 }
 //鼠标x坐标
 this.clientX=function(){
  var ev=this.getEvent();
  var x=this.isIe()?ev.clientX:ev.pageX;
  return x;
 }
 //鼠标y坐标
 this.clientY=function(){
  var ev=this.getEvent();
  var y=this.isIe()?ev.clientY:ev.pageY;
  return y;
 }
 /**增加事件(对象,事件类型,函数指针 )
 obj: html对象
 sEvent: 事件名称
 spNotify: 事件执行的方法
 isCapture:是否允许全屏捕捉
 */
 this.addEvent=function(obj,sEvent,fpNotify,isCapture){
  sEvent=sEvent.indexOf("on")!=-1?sEvent:"on"+sEvent;
  if(obj.addEventListener){
   sEvent=sEvent.substring(sEvent.indexOf("on")+2);
   obj.addEventListener(sEvent,fpNotify,isCapture);
  }else{ //ie
   if(isCapture)
    obj.setCapture(isCapture);
   obj.attachEvent(sEvent,fpNotify);
  }
 }
 //移除事件
 this.removeEvent=function(obj,sEvent,fpNotify){
  if(obj.removeEventListener){
   sEvent=sEvent.substring(sEvent.indexOf("on")+2)
   obj.removeEventListener(sEvent,fpNotify,false);
  }else{
   obj.detachEvent(sEvent,fpNotify);
  }
 }
 //获取鼠标按键,left=1,middle=2,right=3
 this.button=function(){
  var ev=this.getEvent();
  if(!ev.which&&ev.button){//ie
   return ev.button&1?1:(ev.button&2?3:(ev.button&4?2:0))
  }
  return ev.which;
 };
 //阻止事件冒泡传递
 this.stopPropagation=function(){
  var ev=this.getEvent();
  if(this.isIe)
   ev.cancelBubble=true;
  else
   ev.stopPropagation();
 }
 //阻止默认事件返回
 this.preventDefault=function(){
  var ev=this.getEvent();
  if(this.isIe)
   ev.returnValue=false;
  else
   ev.preventDefault();
 }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

gamebox1

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值