jQuery: 자식 제외 함수를 클릭합니다. jQuery "not()" 함수에 내 머리를 감으려고 시도하다가 문제에 부딪혔습니다.부모 div를 "클릭 가능"으로 하고 싶지만 사용자가 자식 요소를 클릭하면 스크립트가 호출되지 않습니다. $(this).not(children()).click(function(){ $(".example").fadeOut("fast"); }); html: This content is not affected by clicks. 이 작업을 수행하려면 .stopPropagation을 사용하여 하위 항목의 클릭을 중지합니다. $(".example").click(function(){ $(this).fadeOut("fast"); }).children().click(function(e) { ..