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

jquery 实现iframe 自适应高度

时间:2014-06-11 10:33:13      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color   com   

超级简单的方法,也不用写什么判断浏览器高度、宽度啥的。
下面的两种方法自选其一就行了。一个是放在和iframe同页面的,一个是放在test.html页面的。
注意别放错地方了哦。



iframe代码,注意要写ID

  1. <iframe src="test.html" id="main" width="700" height="300" frameborder="0" scrolling="auto"></iframe>

 

jquery代码1:

  1. //注意:下面的代码是放在test.html调用
  2. $(window.parent.document).find("#main").load(function(){
  3. var main = $(window.parent.document).find("#main");
  4. var thisheight = $(document).height()+30;
  5. main.height(thisheight);
  6. });

 

jquery代码2:

  1. //注意:下面的代码是放在和iframe同一个页面调用
  2. $("#main").load(function(){
  3. var mainheight = $(this).contents().find("body").height()+30;
  4. $(this).height(mainheight);
  5. });

 

jquery 实现iframe 自适应高度,布布扣,bubuko.com

jquery 实现iframe 自适应高度

标签:style   class   blog   code   color   com   

原文地址:http://www.cnblogs.com/leejersey/p/3772839.html

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