간단한 코드 데모일 뿐인데, 오늘 프로젝트를 진행하면서 이벤트가 발생하지 않도록 하는 콘텐츠가 필요해서 깊이 있게 조사하지 못했습니다. 사용할 수 있는 것을 찾기 전에 여기에 기록하겠습니다.
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>阻止事件冒泡</title> <script src="js/jquery-1.11.3.min.js"></script> <script src="js/jquery.cookie.js"></script> <style type="text/css"> </style> <script type="text/javascript"> function clickDiv(){ alert("clickDiv"); } function clickP(event){ stopEvent(event); alert("clickP"); } function stopEvent(event){ //阻止冒泡事件 //取消事件冒泡 var e=arguments.callee.caller.arguments[0]||event; //若省略此句,下面的e改为event,IE运行可以,但是其他浏览器就不兼容 if (e && e.stopPropagation) { // this code is for Mozilla and Opera e.stopPropagation(); } else if (window.event) { // this code is for IE window.event.cancelBubble = true; } } </script> </head> <body> <div onclick="clickDiv()" style="width:100px; height:100px; background-color:red;"> <p onclick="clickP(event)" style="width:50px; height:50px; margin:auto; background-color:green;"> abad </p> </div> <script type="text/javascript"> </script> </body> </html>
위 내용은 이 글의 전체 내용입니다. 모두 마음에 드셨으면 좋겠습니다.