0
私が持っているコード:インラインフレームdosent仕事
<iframe src="in1.html" width="400" height="300" id="f1">
<p>Your browser does not support iframes.</p>
</iframe>
<script>
var childFrame = document.getElementById("f1").contentWindow;
childFrame.document.body.style.backgroundColor = "yellow"
</script>
私は黄色のページをロードするときに表示されているが、その後、白背景は負荷です。どうして?
あなたはおそらく、あなたがそれ – adeneo
を変更する前にロードするためのiframeを待つ必要がなく、私のスクリプトはdoesnの
を下回っています多くの場合、iframeはまだコンテンツをロードする必要があります** – adeneo