美文网首页
iframe高度变化

iframe高度变化

作者: cherchao | 来源:发表于2017-08-04 16:15 被阅读0次

// 参考
http://blog.csdn.net/alex8046/article/details/51456131

<iframe src="http://www.fulibac.com" id="myiframe" scrolling="no" onload="changeFrameHeight()" frameborder="0"></iframe>

js代码也得跟着改

function changeFrameHeight(){
    var ifm= document.getElementById("iframepage"); 
    ifm.height=document.documentElement.clientHeight;

}

window.onresize=function(){  
     changeFrameHeight();  

} 

相关文章

网友评论

      本文标题:iframe高度变化

      本文链接:https://www.haomeiwen.com/subject/rexblxtx.html