我们有一系列div,其大小可以显示背景图像。有一个子节点,它没有父节点那么大。我们将单击绑定到父级,但在某些 Android设备上,单击仅在单击子级时触发。有人经历过这个吗?
<div id="thing" style="width:100px;height:400px;position:relative;">
<div style="width:100px;height;200px;position:absolute;bottom:0;"></div>
</div>
$('#thing').click(function() {
//this only fires when the child div is clicked.
});
也许是因为孩子绝对定位?