문서의 이전 판입니다!
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Bubbling</title> </head> <style> body * { margin: 10px; border: 1px solid blue; } </style> <body> <form onclick="alert('form')">FORM <div onclick="alert('div')">DIV <p onclick="alert('p')">P</p> </div> </form> </body> </html>
가장 안쪽의 <p>
태그를 클릭하면 아래와 같이 이벤트가 발생합니다.
<p>
할당된 onclick 핸들러가 동작합니다.<div>
에 할당된 핸들러가 동작합니다.<form>
에 할당된 핸들러가 동작합니다.document
객체를 만날 때까지, 각 요소에 할당된 onclick 핸들러가 동작합니다.