zl程序教程

您现在的位置是:首页 >  其它

当前栏目

iframe自适应高度

适应 高度 iframe
2023-09-14 08:56:58 时间

 

iframe:

<iframe src="http://www.cncsen.com/news!list.action?code=6" id="itwo" frameborder="0" onscroll="no" onload="changeFrameHeight()" style="width: 100%;"></iframe>

 

js:

        function changeFrameHeight() {
            var ifm = document.getElementById("itwo");
            ifm.height = document.documentElement.clientHeight - 5;
        }
        window.onresize = function() {
            changeFrameHeight();
        }