<div id="ancestor">
祖先要素
<div id="parent">
親要素
<div id="child">
子要素
</div>
</div>
</div>
div{
padding:30px;
border:2px solid #000;
}
$("div").on("click",function(event){
$(this).css("background", "#f00");
event.stopPropagation();
});
This Pen doesn't use any external CSS resources.