小程序 iOS webview 中网页使用 iframe 无法滚动问题

dom 结构

  <div class="iframeWrap">
    <iframe class="iframe" v-bind="$attrs" scrolling="auto" :src="localUrl"></iframe>
  </div>

css 样式

.iframeWrap {
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  iframe{
    width: 100%;
    height: 100%;
  }
}
原文地址:https://www.cnblogs.com/savokiss/p/14374076.html