parent.html
<html> <body> <iframe id="parent_iframe" src="./child.html"></iframe> </body> </html>
child.html
<html> <body> </body> <script type="text/javascript"> alert("this is child."); function resizeAppContentIframe() { var iframeElement = parent.document.getElementById('parent_iframe') iframeElement.style.width = "945px" iframeElement.style.height = "800px" alert("iframeElement = " + iframeElement); } setTimeout("resizeAppContentIframe()", 10); </script> </html>
http 経由でアクセスすれば問題なく動作します。
0 件のコメント:
コメントを投稿