我只是让他们在页面的身体一个接一个。如果我用< 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。