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

posted @ 2017-02-24 14:18  然而未末  阅读(146)  评论(0编辑  收藏  举报