请参阅以下 jsfiddle 进行演示:
当您在隐藏父级中的元素上使用 jQuery show() 时,似乎会出现问题。(然后随后显示父母)。如果子元素最初是 display: table,当您调用 show() 时,它会将其切换回 display: 块,这是不正确的。
我只能使用小提琴中的控制台来复制它,但是在我的应用程序中,我通过代码遇到了这个问题。
HTML:
<div class="outer">
<div class="inner">Inner</div>
</div>
CSS:
.outer {
display: none;
}
.inner {
display: table;
}
JS:
$('.inner').hide();
// $('.inner').show(); // this works in jsfiddle (but not in my app, or run through console)
编辑:作为我正在使用的解决方法,.css('display', 'table')
但我只是想知道是否有人知道这个的实际原因。