1. 程式人生 > >iframe高度控制

iframe高度控制

iframe在ios的safari中無法通過height:100%控制高度

更多精彩

在iframe中加上scrolling="no"強制沒有滾動條

<iframe id="courseContentFrame" name="courseContentFrame" src="JavaScript:;" scrolling="no">
</iframe>

在iframe動態載入內容後,通過js強制指定高度

var height = $courseLearningPanel.
find(".course-content-panel").height(); $courseContentFrame.attr("height", height); $courseContentFrame.css("min-height", height + "px !important"); $courseContentFrame.css("max-height", height + "611px !important");