1. 程式人生 > >iframe自適應主窗體高度

iframe自適應主窗體高度

fun document order rip javascrip nth 自適應 true sha

<iframe src="" frameborder="0" style="overflow-y: auto; overflow-x:hidden;" width=" 100%;" height="100%" id="point_frame" onload="setIframeHeight(this);"></iframe>

  

function setIframeHeight(iframe) {
            if (iframe) {
                iframe.height = document.documentElement.clientHeight - 50;
            }
        };

  

iframe自適應主窗體高度