JS 클릭 이벤트 거품 차단

630 단어
html 코드 보 여주 기:
$(".parent").click(function(){ console.log("parent"); }); $(".children").click(function(){ console.log("children"); });

결과, children 를 클릭 하면 출력: children parent.이것 이 바로 이벤트 거품 입 니 다. 이벤트 거품 을 막 는 방법 입 니 다. 본 Dom 요소 의 click 이벤트 에 만 응답 하고 함수 에 return false 를 추가 하면 됩 니 다.

$(".parent").click(function(){
    console.log("parent");
});
$(".children").click(function(){
    console.log("children");
    return false;
});

좋은 웹페이지 즐겨찾기