js 捕获事件 阻止事件往下冒泡

js 捕获事件 阻止事件往上冒泡ee|| window.eventif(typeof e.preventDefault()function){alert(a

js 捕获事件 阻止事件往上冒泡
e=e|| window.event;
if(typeof e.preventDefault()==='function'){
alert('a');
e.preventDefault();
e.stopPropagation();
}else{
alert('a');
e.returnValue = false;
e.cancelBubble = true;
}