我有以下标记:
<div class="parent">
I should change my color to green when clicked
<div class="element">I should do nothing when clicked</div>
</div>
这是相关的CSS:
.parent {
width:200px;
height:200px;
background: red;
color: #fff;
}
.parent:active {
background:green;
}
.element {
background:blue;
}
有什么方法可以防止点击时触发.parent
的:active
伪类.element
?尝试点击e.stopPropogation()
时.element
没有运气。
演示