ClearEvents.js
上传用户:luoweizhao
上传日期:2021-11-29
资源大小:15269k
文件大小:0k
源码类别:

OA系统

开发平台:

ASP/ASPX

  1. window.ClearEvent=function(){event.cancelBubble=false;var sSrcTagName=event.srcElement.tagName.toLowerCase();
  2. return (sSrcTagName=="textarea" || sSrcTagName=="input" || sSrcTagName=="select");}
  3. window.ClearKey=function(){event.cancelBubble=false;var iKeyCode=event.keyCode;return !(iKeyCode==78 && event.ctrlKey);}
  4. with (window.document){oncontextmenu=onselectstart=ondragstart=window.ClearEvent;onkeydown=window.ClearKey;}