我正在尝试通过phonegap使用html iframe在ios应用中调用外部网址。我可以查看该网站,但我无法滚动它。
答案 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>