事件冒泡
2020-06-16 本文已影响0人
LemonTree7
原生js冒泡
handleSetting(event) {
const e = window.event || event;
if (e.stopPropagation) {
e.stopPropagation();
} else {
e.cancelBubble = true;
}
event.returnValue = false;
return false;
},