qypt15
예제가 시연되었습니다. 다양한 이벤트 리스너를 추가할 때 버블링은 캡처와 다릅니다.
<script><br>function myP(e) {<br> Alert("P 요소를 클릭했습니다!");<br> window.event? window.event.cancelBubble = true: e .stopPropagation();<br>}<br>function myDiv() {<br> Alert("DIV 요소를 클릭했습니다!");<br>}<br>function myPa() {<br> Alert("P2 요소를 클릭했습니다!"); <br>}<br> function myDiva() {<br> Alert("DIV2 요소를 클릭했습니다!");<br>}<br></script>
위 내용은 js의 버블링 중지 예시에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!