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

Yat*_*rix 22 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"/>
Run Code Online (Sandbox Code Playgroud)

Rob*_*b W 48

您必须指定</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>
Run Code Online (Sandbox Code Playgroud)

结束标记是必需的.另请参见:MDN:iFrame.