Iframe内部页面高度赋值于其父页面的Iframe标签

Iframe内部页面高度赋值于其父页面的Iframe标签,使得该Iframe不存在滚动条,布遮盖子页面的内容:

$(‘#crowdfunding_iframe’,parent.document).attr(“height”,$(document.body).height());

var height = $(document.body).height() + 30;
if(height < 600){
    height = 600;
}
$('#crowdfunding_iframe',parent.document).attr("height",height);
$('#vertical_navigation',parent.document).css("height",height);
    原文作者:悠讓
    原文地址: https://segmentfault.com/a/1190000008643414
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞