在iPhone上滚动iframe'不起作用

Scroll iframe on iPhone doesn't work

本文关键字:不起作用 iframe iPhone 滚动      更新时间:2023-09-26

我知道有很多例子显示了这个问题,但我尝试了所有的方法,我的iframe无法在iPhone上滚动。

我有这个代码:

<div id="content">
   <div id="header"><div>
   <div id="container_iframe">
       <iframe id ="external_content_iframe"></iframe>
   </div>
</div>

带有CSS

#container_iframe
{
    width: 100%;
    height: 88%;
    z-index: 1001;
    margin: auto;
    left: 0;
    top: 55px;
    right: 0;
    bottom: 0;
    overflow-y:scroll !important;
    -webkit-overflow-scrolling:touch !important;
}
#external_content_iframe
{
    width: 100%;
    height: 100%;
    z-index: 1001;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
    top:15%;
}

你能帮我吗?

请参阅这些问题,他们可能有你想要的答案/解释:

问题1

问题2