拿这个jsfiddle。如果您单击蓝色方块,则会出现一个带有紫色子方块的红色方块(如果您是色盲,请道歉):
$('#holder').click(function(){
$(this).children('.parent').show();
});
这工作正常。当您单击紫色子方块时,红色父方块应该被隐藏:
$('.child').click(function(){
$(this).parent().hide();
console.log($(this).parent().css('display'));
});
这不起作用,尽管控制台display:none
为父元素返回了一个 css 值。我想知道是否有人可以解释为什么父母没有被隐藏,以及可能有什么替代方法来隐藏它?
HTML
<div id="holder">
<div class="parent">
<div class="child">
</div>
</div>
</div>
CSS
#holder {
height: 50px;
width:50px;
background-color: blue
}
.parent {
position:fixed;
top:100px;
left:200px;
display:none;
width:200px;
height:200px;
background-color:red
}
.child {
position:absolute;
width:50px;
height:50px;
background-color:purple
}
JS
$(function(){
$('#holder').click(function(){
$(this).children('.parent').show();
});
$('.child').click(function(){
$(this).parent().hide();
console.log($(this).parent().css('display'));
});
});