iframe 自适应高度的方法

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

<script>
function changeFrameHeight(){
var ifm=document.getElementById("iframepage")
ifm.height=document.documentElement.clientHeight
}
window.onresize=function(){
changeFrameHeight()
}
</script>

转载于http://www.manongjc.com/article/946.html

原文地址:https://www.cnblogs.com/yiran2016/p/6438389.html