Skip to content

Latest commit

 

History

History
15 lines (15 loc) · 342 Bytes

cancel-bubble.md

File metadata and controls

15 lines (15 loc) · 342 Bytes
传入event则阻止冒泡
/**
 * 可以传入event则阻止冒泡,不传不阻止
 * @param event
 */
function someClick (event) {
    if (event && event.stopPropagation) {
        event.stopPropagation()  // w3c
    } else {
        window.event.cancelBubble = true // IE
    }
    // TODO 需要阻止冒泡的事件
}