まず第一に
、サイズ変更には興味がありません iframe
。
iframe
ドキュメントの高さを警告するために、内部に Web サイトを作成しようとしています。
単に私はこのページを持っています:
www.PARENT.com
<body>
<iframe src="http://www.CHILD.com" />
</body>
www.CHILD.com
- index.html
- contactus.html
<!-- ** FOOTER SCRIPT ** -->
<script>
var body = document.body,
html = document.documentElement;
var height = Math.max( body.scrollHeight, body.offsetHeight,
html.clientHeight, html.scrollHeight, html.offsetHeight );
alert( height ); //NOW TELLING MY HEIGHT!
</script>
前述のように、www.CHILD.com
には、次のように高さが異なるページがいくつかあります。
- www.CHILD.com/index.html -- 450px
- www.CHILD.com/contactus.html -- 1000px
そして、両方のページのフッターセクションで上記のスクリプトを使用しています。
しかし、www.PARENT.com
ページを実行するたびに、常に次のようになります。
アラート:
450
ここで何が問題なのですか?