iframe在iOS中无法滚动

时间:2018-07-02 20:26:16

标签: ios iphone cordova ionic-framework

正在开发cordova应用程序,我只是在该应用程序中查看iframe,但是我有一个问题,即iframe无法在ios上滚动

.mainFrame{
    width:100%;
    height:100%;
    border-width:0px;
    overflow-x:hidden;
}
  <div style="overflow:auto;-webkit-overflow-scrolling:touch">
     <iframe class="mainFrame" id="mainFrame" src="http://demo.demo.com" ></iframe>
  </div>

2 个答案:

答案 0 :(得分:0)

尝试:

 .mainFrame {
        width:100%;
        height:100%;
        border-width:0px;
        overflow:scroll !important; -webkit-overflow-scrolling:touch !important;
    }
     <iframe class="mainFrame" id="mainFrame" src="http://demo.demo.com" ></iframe>

或选中此tutorial对我有用

答案 1 :(得分:0)

我将iframe替换为 科尔多瓦插件的浏览器 https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-inappbrowser/