在Android上,使用任何域外的https iframe src都会导致iframe无法滚动:

<div style="-webkit-overflow-scrolling:touch;
    height:300px;width:300px;overflow:auto;">
<iframe height="100%" src="https://fully-qualified-domain/"></iframe>
</div>


是否有办法让iframe根据其内容自然扩展?

最佳答案

到目前为止,我发现的唯一解决方案是在iframe上设置似乎适合内容的最小高度。如果太大,则iframe会滚动很长一段时间,使用起来有点麻烦,但至少可以看到iframed页面。

<div style="-webkit-overflow-scrolling:touch;
   height:300px;width:300px;overflow:auto;">
<iframe style="min-height:1000px;" height="100%" src="https://fully-qualified-domain/"></iframe>
</div>

09-30 18:17
查看更多