在IFRAME内部提醒其当前的高度?

时间:2013-08-22 11:06:24

标签: javascript html iframe height

首先
我没有兴趣调整 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

这里有什么问题?

0 个答案:

没有答案