我有一个Iframe,我想在其中滚动到特定锚点。我已经尝试过许多关于stackoverflow的解决方案,但是似乎都没有用。该页面在普通浏览器中可正常滚动,但在IOS设备上不会滚动。这是代码:
.grafieken {
position: relative;
overflow: hidden;
height: 350px;
-webkit-overflow-scrolling:touch;
overflow-y: scroll;
}
<div class="grafieken">
<iframe src="http://www.externalsite.com/#anchor" scrolling="no" frameborder="0" allowfullscreen></iframe>
</div>
问题是我不希望用户在iframe中滚动,而只是希望iframe自动向下滚动到定位点。 这在Android上是可能的,但在IOS上似乎是不可能的。我真的希望有人能帮助我。