Edit in JSFiddle

<div id="div_">
    DIV영역
    <p id="p_">
        P영역
        <a id="a_" href="http://www.google.co.kr" target="_blank">A영역 구글 링크</a>
    </p>
</div>

<section id="console"><br></section>
//DIV 영역에 클릭 이벤트 설정
$("#div_").on("click",function(event){
    $("#console").append("<br>DIV 클릭");
});

//P 영역에 클릭 이벤트 설정
$("#p_").on("click",function(event){
    $("#console").append("<br>P 클릭");
});

//A 영역에 클릭 이벤트 설정
$("#a_").on("click",function(event){
    $("#console").append("<br>A 클릭");
    
    //상위로 이벤트가 전파되지 않도록 중단한다.
    event.stopPropagation();
});