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);

猜你喜欢

转载自www.cnblogs.com/baimeishaoxia/p/12535028.html