Iframe內部頁面高度賦值於其父頁面的Iframe標籤

悠讓發表於2019-02-16

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

相關文章