Skip to content
FuGardenia edited this page Dec 9, 2015 · 2 revisions
// 防止冒泡
function stopPropagation(e) {
    e = e || window.event;
    if(e.stopPropagation) { //W3C阻止冒泡方法
        e.stopPropagation();
    } else {
        e.cancelBubble = true; //IE阻止冒泡方法
    }
}
Clone this wiki locally