IFrame滚动无法通过phonegap在ios应用中运行

时间:2014-04-11 13:52:57

标签: cordova ios6

我正在尝试通过phonegap使用html iframe在ios应用中调用外部网址。我可以查看该网站,但我无法滚动它。

1 个答案:

答案 0 :(得分:9)

按照以下方式扭曲你的iframe

<div style="width:100%;height:100%;overflow:scroll !important;-webkit-overflow-scrolling:touch !important">
  <iframe src="www.your_url.com" scrolling="yes" style="width:100%;height:100%" frameborder="0"></iframe>
</div>