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