内联模式中的iframe打开时不会滚动到顶部

时间:2018-06-25 20:50:34

标签: javascript html

我在模态中有一个iframe,但是当我打开模型时,其中的iframe并不显示页面的开始,而是中间。

<iframe name="finance" id="finance" src="https://www.elbtools.com/secure/apply.php?elbt=1459262273170" frameborder="0" border="0" cellspacing="0" style="width:100%; height: 700px;"></iframe>

这是我的 codepen 。谢谢。

1 个答案:

答案 0 :(得分:5)

一种快速的解决方案(edited codepen)是在iframe src的末尾附加“#”。

src="https://www.elbtools.com/secure/apply.php?elbt=1459262273170#"

希望您可以对其进行修改,直到找到更好的解决方案为止。