我想不通这个。我在 ios7 上使用 phonegap。我有一个页面容器,我在其中放置页面元素。我有选择元素,它使用默认的 ios7 选择列表事物。选择获得黑色背景 - 因此无法阅读文本。如果我从我的 css 中删除 glb_pagecontainer 和页面,则选择列表会变得透明。所以问题似乎出在glb_pagecontainer 与页面的结合上?
#glb_pagecontainer {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.page {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
<div id="glb_pagecontainer">
<div class="page" id="pageid">
<div class="row row1" style="margin-top:50px;">
<section class="col">
<div class="input">
<select id="theid" class="inputpicker" style="text-indent: 92px;">
<option>one option</option>
</select>
</div>
</section>
</div>
</div><!-- End page -->
</div><!-- End glb_pagecontainer -->