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

时间:2011-11-25 11:06:36

标签: 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>

文本加载正常,iframe内容正确加载,但“大量文本”没有。为什么会这样?我正在使用Internet Explorer 8来完成这项任务,无法改变这一点。

1 个答案:

答案 0 :(得分:4)

您错过了iframe代码末尾的>

<iframe frameborder="0" src='http://URL.com'></iframe>