码迷,mamicode.com
首页 > 其他好文 > 详细

iframe自适应高度问题

时间:2014-10-24 20:22:54      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:io   ar   java   on   问题   cti   html   amp   ad   

<iframe src="index.html" id="iframe" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" onLoad="iFrameHeight()"></iframe>
<script type="text/javascript" language="javascript">   
  function iFrameHeight() {   
    var ifm= document.getElementById("iframe");   
    var subWeb = document.frames ? document.frames["iframe"].document : ifm.contentDocument;//(document.frames检测是否是ie,ie下document.frames["iframe"].document,其他为ifm.contentDocument)   
    if(ifm != null && subWeb != null) {
       ifm.height = subWeb.body.scrollHeight;
       ifm.width = subWeb.body.scrollWidth;
    }   
  }   
</script>

iframe自适应高度问题

标签:io   ar   java   on   问题   cti   html   amp   ad   

原文地址:http://www.cnblogs.com/lvke/p/4048984.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!