oBtn.onclick=function(eve){
var e = eve ||window.event
}
oBtn.onclick=function(eve){
var e = eve ||window.evente.target
var target =e.target ||window.event
}
function stopBubble(e){
if(e.stopPropgation){
e.stopPropgation();
}else{
e.cancelBubble=true;
}
}
function preDef(e){
if(e.preventDefault){
e.preventDefault();
}else{
e.returnValue==false;
}
}
var which = e.keyCode || e.which;
var which = e.charCode || e.which;
原文:https://www.cnblogs.com/cupid10/p/13179046.html