ÇöÀçÀÇ À̺¥Æ®°¡ À̺¥Æ®Ã³¸®ÀÚµéÀÇ °èÅëµµ¿¡¼ ¹öºí¾÷(bubble up)ÇÒ °ÍÀΰ¡¸¦ ¹ÝȯÇϰųª ¼³Á¤ÇÑ´Ù.
false | µðÆúÆ®À̸ç, ¹öºí¸µ(bubble)ÀÌ °¡´ÉÇÏ´Ù. À̺¥Æ®·Î ºÎÅÍ ¹ÞÀº °èÅëµµ¿¡¼ ´ÙÀ½ À̺¥Æ®Ã³¸®ÀÚ°¡ Çã¿ëµÈ´Ù. |
true | ÇØ´ç À̺¥Æ®¿¡¼ ¹öºí¸µ(bubble)ÀÌ ¾ÈµÈ´Ù. À̺¥Æ®·Î ºÎÅÍ ¹ÞÀº °èÅëµµ¿¡¼ ´ÙÀ½ À̺¥Æ®Ã³¸®ÀÚ°¡ ¹æÁöµÈ´Ù. |
ÀÌ ¼Ó¼ºÀº Àбâ/¾²±â·Î µðÆúÆ®°ªÀº falseÀÌ´Ù.
ÀÌ ¼Ó¼ºÀ» »ç¿ëÇÏ¿© ¹öºí¸µÀ» ÁßÁö½ÃÅ°´õ¶óµµ ´ÙÀ½ À̺¥Æ®µé¿¡´Â ¿µÇâÀ» ÁÖÁö ¾Ê´Â´Ù.
°³Ã¼ | script | HTML | ±Ô°Ý | IE |
---|
À̹ÌÁö À§¸¦ Ŭ¸¯ÇØ º¸¶ó, ±×¸®°í ¿ÞÂÊ SHIFT Å°¸¦ ´©¸£¸é¼ Ŭ¸¯ÇØ º¸¶ó.
¿ÞÂÊ SHIFT Å°¸¦ ´©¸£¸é¼ Ŭ¸¯Çϸé
À̺¥Æ®¸¦ IMG °³Ã¼·Î ºÎÅÍ document·Î ¹öºí¸µÇÏ¿© ¿Ã¶ó°¡´Â °Í(bubbling up)ÀÌ ÁßÁöµÇ°í document °³Ã¼ÀÇ À̺¥Æ®Ã³¸®ÀÚ¿¡ ÀÇÇÑ IMG °³Ã¼¿¡¼ onclick À̺¥Æ®°¡ ¹ß»ýµÇÁö ¾Ê°Ô ÇÑ´Ù.
<SCRIPT> function bodyEvent(){ if (event.srcElement.tagName!='IMG') return; // ´Ù¸¥ °³Ã¼¿¡¼ ¹ß»ýµÇ´Â °ÍÀ» ¹æÁö ½ÃÄ×´Ù. alert('bodyEvent() ±â´É ¼öÇà ½ÃÀÛ.') show.innerHTML+='event.srcElement.src='+event.srcElement.src+'<BR>'; } function imgEvent(){ str='event.shiftLeft='+event.shiftLeft+'<BR>'; str+='Ŭ¸¯ Àü event.cancelBubble='+event.cancelBubble+'<BR>'; if (event.shiftLeft) event.cancelBubble=true; str+='Ŭ¸¯ ÈÄ event.cancelBubble=<FONT color=red>'+event.cancelBubble+' '; if (event.cancelBubble) str+=' À̺¥Æ® ¹ß»ý ¾ïÁ¦</FONT>'; else str+=' <FONT color=blue>À̺¥Æ® ¹ß»ý</FONT>'; str+='</FONT><BR>'; show.innerHTML=str; } </SCRIPT> <BODY onclick="bodyEvent()"> <IMG onclick="imgEvent()" src="../../gif/rfexample.gif"> <DIV id="show" style="border:solid 1 blue;width:500;height:5em">°á°ú Ç¥½Ãâ</DIV>