iframe加载图片和IE

时间:2012-04-23 14:57:28

标签: html css internet-explorer iframe

我正在将我的外部服务器中的Iframe加载到我的网页上,我想要一个加载图像,因为有时需要10秒才能加载。一切都很好,但在IE中没有。

<center>
<div style="background: #ffffff url(http://mentalized.net/activity-indicators/indicators/simon-claret/progress_bar.gif) no-repeat 50% 5%;">
<iframe src="http://x.x.x.x/panel.php" allowTransparency="true" width="100%" height="450px" scrolling="no"></iframe>
</div>
</center>

我的另一个问题是,有更好的方法吗?我不能使用ajax,因为它是一个外部服务器,但是有更好的方法来使用iFrame加载图像吗?谢谢!

1 个答案:

答案 0 :(得分:1)

尝试将带有背景图像信息的样式放在iframe本身上,而不是单独的div。

<iframe src="http://x.x.x.x/panel.php" allowTransparency="true" width="100%" height="450px" scrolling="no" style="background: #ffffff url(http://mentalized.net/activity-indicators/indicators/simon-claret/progress_bar.gif) no-repeat 50% 5%;"></iframe>