//事件冒泡 window.onload=function() { var oBtn=document.getElementById("btn1"); var ev=event?event:window.event; oBtn.onclick=function() { alert("btn1"); ev.cancelBubble=true; //阻止事件冒泡 后面不会弹出“document" } document.onclick=function() { alert("document"); } }