javascript 거품 발생 및 기본 이벤트 사용 에 대한 자세 한 설명

자 바스 크 립 트 의 거품 에 대해 나 는 줄곧 그것 을 오해 했다.
거품,즉 밑 에서 밖으로 blow blow blow blow...
부 끄 러 운 것 은 거품 을 막 는 것 이 아버지 요소 가 하위 요소 로 전달 되 는 것 을 막 는 것 이 라 고 생각 했 습 니 다.
뒤 돌아 볼 수 있 도록 코드 를 붙 여 라!

<script type="text/javascript">
 window.onload=function(){
 var a=document.getElementById("a");
 var b=document.getElementById("b");
 var c=document.getElementById("c");
 var c=document.getElementById("d");

     a.onclick=function(e){
         this.style.background="#000";   
         };

     b.onclick=function(e){
             this.style.background="#ccc";
             //
             window.event.cancelBubble = true;//IE8
             e.stopPropagation();
         };

     d.onmousedown=function(e){
         // , chrome
         window.event.returnValue = false;
         e.preventDefault();
     }
 }

 

 </script>

Html
 <div id="a" style="width:300px;height:300px;background:red;overflow:hidden;">
     <div id="b" style="width:200px;height:200px;background:green;margin:50px 0 0 50px;overflow:hidden;">
         <div id="c" style="width:100px;height:100px;background:yellow;margin:50px 0 0 50px;overflow:hidden;">
             <img src="240x240.jpg" width="50" height="50" id="d" />
         </div>
     </div>
 </div>
또 다른 예:

<script type="text/javascript">
window.onload=function(){
    document.getElementById("test").addEventListener('click',function(e){
        alert('aaaa')
    },false);

    document.getElementById("test1").addEventListener('click',function(e){
        alert('bbb')
        e.stopPropagation();
    },false)
}
</script>

<style type="text/css">
#test1{width:100px;height:100px;background:#ff0}
#test2{width:100px;height:100px;background:#ff0}
</style>
<div id="test" style="width:100px;height:100px;background:#f60;padding:20px;">
    <div id="test1"></div>
</div>

좋은 웹페이지 즐겨찾기