ie不支持的event.stopPropagation的解决方式

if (event.stopPropagation) {
    // 针对 Mozilla 和 Opera
    event.stopPropagation();
} else if (window.event) {
    // 针对 IE
    window.event.cancelBubble = true;
}

只要把event.stopPropagation(),替换为上面的代码就可以了

原文地址:https://www.cnblogs.com/olive27/p/6762419.html