首先
我没有兴趣调整 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.PARENT.com
页面时,我总是得到:
提醒:
450
这里有什么问题?