首先,
我对调整 iframe
.
我正在尝试将网站设置在其中iframe
以提醒其文档高度。
只是我有这个页面:
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
这里有什么问题?