iframe 自适应高度

 

function setIframeHeight(iframe) {
if (iframe) {
var iframeWin = iframe.contentWindow || iframe.contentDocument.parentWindow;
if (iframeWin.document.body) {
iframe.height = iframeWin.document.documentElement.scrollHeight || iframeWin.document.body.scrollHeight;
}
}
};

window.onload = function () {
setIframeHeight(document.getElementById('frame_list'));
};

  

 

iframe高度自适应的6个方法

posted @ 2017-06-27 11:19  星耀学园  阅读(215)  评论(0)    收藏  举报