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

jQuery简单实现iframe的高度根据页面内容自适应的方法(转)

时间:2018-08-04 00:07:10      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:分享   color   style   方式   jquer   参考   contents   UNC   win   

本文实例讲述了jQuery简单实现iframe的高度根据页面内容自适应的方法。分享给大家供大家参考,具体如下:
 
方式1:
  
//注意:下面的代码是放在和iframe同一个页面中调用
$("#iframeId").load(function () {
    var mainheight = $(this).contents().find("body").height() + 30;
    $(this).height(mainheight);
});
  
 
方式2:
 
//注意:下面的代码是放在iframe引用的子页面中调用
$(window.parent.document).find("#iframeId").load(function () {
    var main = $(window.parent.document).find("#iframeId");
    var thisheight = $(document).height() + 30;
    main.height(thisheight);

 

jQuery简单实现iframe的高度根据页面内容自适应的方法(转)

标签:分享   color   style   方式   jquer   参考   contents   UNC   win   

原文地址:https://www.cnblogs.com/jiangxiaobo/p/9416953.html

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