使用Jquery mobile 1.4.2(目前最新版本)我在Android 4.0(Ice Cream Sandwich)上遇到弹出功能问题。
当显示时,弹出窗口显示在页面内容的其余部分后面(可以使用z-index:1
上的ui-popup-container
进行模拟
答案 0 :(得分:2)
我对此问题的解决方案有点蠢:添加-webkit-transform:translateZ(0)
:
.ui-popup-container {
-webkit-transform:translateZ(0)
}
(我不得不分享这个,我失去了很多时间!)