iframe高度自适应子页面高度 使用onload属性
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iframe高度自适应子页面高度 使用onload属性相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html> <head> <title>测试</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=0"> </head> <body id="body1"> <iframe id="urls" src="child1.html" frameborder="0" scrolling="no" height="100%" style="width: 1px; min-width: 100%; *width: 100%;" ></iframe> <div style="height: 200px; background: green;"> </div> </body> <script> var iframe = document.getElementById(‘urls‘); function iframeLoad() { iframe.height=document.getElementById("urls").contentWindow.document.body.clientHeight; } /* function iframeclick(){ iframeLoad(); } */ if (iframe.attachEvent){ iframe.attachEvent("onload",function(){ iframeLoad(); }); } else { iframe.onload = function(){ iframeLoad(); }; } </script> </html>
以上是关于iframe高度自适应子页面高度 使用onload属性的主要内容,如果未能解决你的问题,请参考以下文章