如何在我的html页面中使用多个iFrame?

前端之家收集整理的这篇文章主要介绍了如何在我的html页面中使用多个iFrame?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我只是让他们在页面的身体一个接一个。如果我用< object>这样做,我看到他们全部。使用iFrames,我只看到第一个。
<iframe id="AlertMaintenance" style="border-style: none; border-color: inherit; border-width: 0px; height:1222px; width:100%;" src="AlertMaintenance.html"/>

<iframe id="DelayReason" style="border-style: none; border-color: inherit; border-width: 0px; height:1222px; width:100%;" src="DelayReason.html"/>

解决方法

您必须指定< / iframe>关闭标签自动关闭标签(/>)不起作用。

工作代码

<iframe id="AlertMaintenance" style="border-style: none; border-color: inherit; border-width: 0px; height:1222px; width:100%;" src="AlertMaintenance.html"></iframe>
<iframe id="DelayReason" style="border-style: none; border-color: inherit; border-width: 0px; height:1222px; width:100%;" src="DelayReason.html"></iframe>

结束标记是必需的。参见:MDN: iFrame

原文链接:https://www.f2er.com/html/233673.html

猜你在找的HTML相关文章