js函数中访问事件的问题
function stopBubble(e) {
var e = e ? e : window.event;
if (window.event) { // IE
e.cancelBubble = true;
} else {
e.stopPropagation();
}
}
上面这个时间阻止函数,调用时是这么写的
<input id="buttonId" type="button" onclick="stopBubble(event)" />
请问如果我想以 addEventListener 绑定事件的方式该怎么写?如何获取这个事件?
第二个问题,为什么通过 window.event 可以判断是IE浏览器?
雾雨.斯卡雷特
10 years, 2 months ago