html:
<iframe src="main.html" frameborder="0" scrolling="no" width="100%" id="iframeContent"></iframe>
js :
//iframe 高度自适应
function setIframeHeight(iframe) {
iframe.onload=function(){
var iframeWin = iframe.contentWindow || iframe.contentDocument.parentWindow;
var iframeHeight=iframeWin.document.documentElement.scrollHeight || iframeWin.document.body.scrollHeight;
iframe.height = iframeHeight+10;
}
};
调用方法:
setIframeHeight(document.getElementById('iframeContent'));