최신 웹 개발 튜토리얼
 

jQuery event.stopPropagation() Method

<jQuery를 이벤트 방법

부모 요소로 버블 링에서 클릭 이벤트를 중지

$("span").click(function(event){
    event.stopPropagation();
    alert("The span element was clicked.");
});
$("p").click(function(event){
    alert("The p element was clicked.");
});
$("div").click(function(){
    alert("The div element was clicked.");
});
»그것을 자신을 시도

정의 및 사용

event.stopPropagation() 메소드가 실행되는 모든 상위 이벤트 핸들러를 방지, 부모 요소에 이벤트의 버블 링을 중지합니다.

팁 : 사용 event.isPropagationStopped() 이 메소드가 이벤트를 호출되었는지 여부를 확인하는 방법을.


통사론

event.stopPropagation()

매개 변수 기술
event 필요합니다. event 파라미터는 이벤트 함수 결합에서 유래

<jQuery를 이벤트 방법