我有以下的標記:是否可以抑制父進程:活動僞類?
<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
點擊沒有運氣。 demo
我猜測jQuery'.stopPropogation()'對css渲染沒有影響,只是在JavaScript事件上。 – 2013-03-20 12:40:05