站点嵌iframe自适应

来源:互联网 发布:光翼学园网络班 编辑:程序博客网 时间:2024/05/16 16:00
<iframe src="http://10.0.1.12:10002/admin" id="myiframe" frameborder="0" scrolling="no" onload="changeFrameHeight()" width="100%" height="100%"></iframe><script>function changeFrameHeight(){    var ifm= document.getElementById("myiframe");    ifm.height=document.documentElement.clientHeight;    }window.onresize=function(){     changeFrameHeight();    }</script>

原创粉丝点击