2
我想通过phonegap调用使用html iframe的ios应用程序中的外部URL。我可以查看该网站,但无法滚动。IFrame滚动不通过手机在iOS应用程序
我想通过phonegap调用使用html iframe的ios应用程序中的外部URL。我可以查看该网站,但无法滚动。IFrame滚动不通过手机在iOS应用程序
弯曲你的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>
WebKit的溢出滚动就是为我做 –