兩種,冒泡和捕獲,不對是捕獲和冒泡。chrome
document.body.addEventListener("click",function(){console.log("1")},true); document.body.addEventListener("click",function(){console.log("4")},false); document.querySelector("header").addEventListener("click",function(){console.log("2")},true); document.querySelector("header").addEventListener("click",function(){console.log("3")},false);
說明:函數
console.dir(window.Event.prototype)
,關注裏面的四個方法initEvent、preventDefault、stopImmediatePropagation、stopPropagation
,第一個初始化事件方法,第二個阻止默認行爲,第三個百度一下,第四個stop:中止,propagation:傳播。