iframe自适高度
程序员文章站
2022-05-29 07:57:34
...
<iframe width="100%" id="autoHeightIframe" src="URL必须和该文件在同一个域名下"
onload="Javascrīpt:setIframeHeight(this)" frameborder="0" scrolling="no" height="100%">
</iframe>
<script> function setIframeHeight(iobj) { var win = iobj; if (document.getElementById("autoHeightIframe")) { if(win && !window.opera) { if (win.contentDocument && win.contentDocument.body.offsetHeight) { win.height = win.contentDocument.body.offsetHeight; }else if (win.Document && win.Document.body.scrollHeight) { win.height = win.Document.body.scrollHeight; } } } } </script>