0

外部サーバーからウェブページにIframeを読み込んでいますが、画像の読み込みに10秒かかることがあるため、画像の読み込みが必要でした。Chromeではすべてがうまくいきますが、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で画像を読み込むためのより良い方法はありますか?ありがとう!

4

1 に答える 1

1

別のdivではなく、iframe自体に背景画像情報を含むスタイルを配置してみてください。

<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>
于 2012-04-23T15:04:52.910 に答える