开发者

Dynamically adjust an iframe's height

开发者 https://www.devze.com 2023-04-07 14:26 出处:网络
I have an iframe that contains some content from a site.I want the iframe to adjust to 100% of the src conten开发者_JAVA百科t\'s height.Bit of a noob at js - here\'s what I\'m working with:

I have an iframe that contains some content from a site. I want the iframe to adjust to 100% of the src conten开发者_JAVA百科t's height. Bit of a noob at js - here's what I'm working with:

  <iframe id="frame" scrolling="no" frameborder="0" src="http://www.srcwebsite.org"></iframe>

    <script type="text/javascript">
    function resizeIframe() {
        var height = document.documentElement.clientHeight;
        height -= document.getElementById('frame').offsetTop;

        height -= 20; /* whatever you set your body bottom margin/padding to be */

        document.getElementById('frame').style.height = height +"px";

    };
    document.getElementById('frame').onload = resizeIframe;
    window.onresize = resizeIframe;
    </script>

This works great to resize the height of the iframe to its page, but I want it to resize it to the height of the src...


You can't access the height of the iframe's content because of Same Origin Policy (protocol, domain and ports must match).

You could set up CORS, keep in mind it's not supported in IE until IE8.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号