Iframe内部页面高度赋值于其父页面的Iframe标签,使得该Iframe不存在滚动条,布遮盖子页面的内容:css
$('#crowdfunding_iframe',parent.document).attr("height",$(document.body).height());code
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);