Jquery mobile -webkit溢出滚动:触摸iOS 5下的jQuery移动面板

Jquery mobile -webkit溢出滚动:触摸iOS 5下的jQuery移动面板,jquery-mobile,ios5,panel,mobile-webkit,Jquery Mobile,Ios5,Panel,Mobile Webkit,我知道这个问题已经讨论过了,但我不是在这里讨论jQM面板中的滚动。这里给出的解决方案非常有效: 至少在iOS 6和iOS 7下。 在iOS 5下,它根本不起作用。我可以滚动页面的内容,但当我打开它时面板保持固定。我测试了-webkit-overflow-scrolling:touch属性,它可以在其他网站上使用。我只需要它与jQuery Mobile一起工作 该网站将是完美的,如果你能帮助我使这项工作 提前谢谢大家,, 阿德里安B .ui-panel.ui-panel-open { po

我知道这个问题已经讨论过了,但我不是在这里讨论jQM面板中的滚动。这里给出的解决方案非常有效:

至少在iOS 6和iOS 7下。 在iOS 5下,它根本不起作用。我可以滚动页面的内容,但当我打开它时面板保持固定。我测试了-webkit-overflow-scrolling:touch属性,它可以在其他网站上使用。我只需要它与jQuery Mobile一起工作

该网站将是完美的,如果你能帮助我使这项工作

提前谢谢大家,, 阿德里安B

.ui-panel.ui-panel-open {
    position:fixed;
}
.ui-panel-inner {
    position: absolute;
    top: 1px;
    left: 0;
    right: 0;
    bottom: 0px;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
}