iframe 阻止页面的其余部分加载?

0 html iframe load

我在页面中加载了一个 iframe。这段代码在 firefox 中运行良好,但在 ie 中不起作用 - 它不会加载 iframe 之后的任何内容。如果我将 iframe 移动到页面底部,一切都会正确加载。有没有人遇到过这个错误?

head----
<style> 
iframe{    
margin-left: 22px;
height: 112px;
width: 612px;
}  
body{background-color:transparent}    
</style> 

body---
<img align="left" border="0" src="http://picurl.com"/><br />
<p>text</p>
<iframe frameborder="0" src='http://URL.com'</iframe><br />
<p>big load of text</p>
Run Code Online (Sandbox Code Playgroud)

文本加载正常,iframe 的内容加载正确,但“大量文本加载”却没有。为什么会发生这种情况?我正在使用 Internet Explorer 8 执行此任务,无法更改。

aor*_*sik 6

您错过了>iframe 标签末尾的a :

<iframe frameborder="0" src='http://URL.com'></iframe>
Run Code Online (Sandbox Code Playgroud)