原因:ios嵌入的iframe页面,滚动条失效
解决:在iframe外层包裹一个div,然后将其设置为可滚动,iframe的属性scrolling="no"
<div style="webkit-overflow-scrolling: touch;overflow-y: scroll;">
<iframe frameborder="0" width="100%" height="100%" scrolling="no"></iframe>
</div>
原因:ios嵌入的iframe页面,滚动条失效
解决:在iframe外层包裹一个div,然后将其设置为可滚动,iframe的属性scrolling="no"
<div style="webkit-overflow-scrolling: touch;overflow-y: scroll;">
<iframe frameborder="0" width="100%" height="100%" scrolling="no"></iframe>
</div>