我有一个 div(parentDivStyle) 位置absolute
是我的父 div。然后我在父 div 中有 5 个 children(childDivStyle) div,其中 position relative
。我已将overflow
父 div 设置为隐藏。所以一些子 div 是不可见的。我想获取 jquery 不可见的 div。有什么办法吗?
我已经用谷歌搜索了它,大多数结果都与“可见”属性相关,这不是我想要的。而且我也不喜欢任何插件。请提供任何帮助。
CSS
.parentDivStyle {
overflow:hidden;
width:300px;
height:50px;
position:absolute;
background:#ccc;
float:left;
}
.childDivStyle {
width:100px;
height:50px;
position:relative;
float:left;
background:red;
border: 1px solid black;
}
HTML
<div class="parentDivStyle">
<div class="childDivStyle">1</div>
<div class="childDivStyle">2</div>
<div class="childDivStyle">3</div>
<div class="childDivStyle">4</div>
<div class="childDivStyle">5</div>
</div>