码迷,mamicode.com
首页 > Web开发 > 详细

jquery库实现iframe自适应内容高度和宽度

时间:2014-07-18 20:36:55      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:style   java   使用   文件   width   io   

javascript原生和jquery库实现iframe自适应内容高度和宽度---推荐使用jQuery的代码! 

‍<iframe src="index.php" id="mainiframe" name="mainiframe" width="100%"   frameborder="0" scrolling="no" marginwidth="0" marginheight="0"></iframe> 
基于Jquery库的代码很好实现: 
<script language="javascript" type="text/javascript"> 
$(document).ready(function(){ 
      $("#mainframe").load(function(){ 
      $(this).height(0); //用于每次刷新时控制IFRAME高度初始化 
      var height = $(this).contents().height() + 10; 
      $(this).height( height < 500 ? 500 : height ); 
    }); 
}); 
</script> 

‍基于JS原生代码的实现: 
<script language="javascript"> 
       if (window.parent.length>0){window.parent.document.all.mainframe.style.height=document.body.scrollHeight;} 
</script> 
只需在你被iframe调用的文件</body>之后加入上面这段即可! 
这个也可以控制iframe的高度随内容的多而自动增长 
<iframe name="web" width="100%" frameborder=0 height="100%" src="index.php" id="web" onload="this.height=web.document.body.scrollHeight+20" ></iframe>jquery库实现iframe自适应内容高度和宽度

jquery库实现iframe自适应内容高度和宽度,布布扣,bubuko.com

jquery库实现iframe自适应内容高度和宽度

标签:style   java   使用   文件   width   io   

原文地址:http://www.cnblogs.com/xiaochao12345/p/3850335.html

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