Javascript
에서는 이벤트 버블링이 노드에 의해 생성된 다음 상위 노드에 영향을 미치고 단계적으로 상승하여 마침내 전체 페이지에 천천히 영향을 줍니다. 그러나 때로는 이벤트 버블링의 발생을 방지하거나 심지어 이벤트의 발생도 방지하고 싶을 때가 있습니다. 그 자체? 이 기사에서는 함께 알아보도록 안내합니다.
1. 이벤트가 터지는 것을 방지
<!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>Document</title> <style> .boxA { overflow: hidden; width: 300px; height: 300px; margin: 100px auto; background-color: blue; text-align: center; } .boxB { width: 200px; height: 200px; margin: 50px; background-color: green; line-height: 200px; color: #fff; } </style> </head> <body> <div class="boxA"> <div class="boxB">boxB</div> </div> <script> var boxA = document.querySelector('.boxA'); var boxB = document.querySelector('.boxB'); boxA.onclick = function (e) { console.log('我被点击了boxA'); }; boxB.onclick = function (e) { e.cancelBubble=true; //不冒泡 console.log('我被点击了boxB'); }; </script> </body> </html>
2. 이벤트 자체가 발생하지 않도록 방지
<!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>Document</title> </head> <form action="http://www.php.cn" method="POST"> <button type="submit">按钮1</button> </form> <body> <script> const btn=document.querySelector("button"); console.log(btn); btn.addEventListener("click",function(e){ e.preventDefault(); }); </script> </body> </html>
추천: "2021 js 인터뷰 질문 및 답변(대요약)"
위 내용은 Javascript가 이벤트 버블링과 이벤트 자체 발생을 방지하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!