兼容各种浏览器的iframe自适应高度代码,分享给在网站设计中遇到浏览器不兼容困惑的朋友们。
- <iframe id="frame_content" src="xazzz.html" scrolling="no" frameborder="0" onload="this.height=100"></iframe>
- <script type="text/javascript">
- function reinitIframe(){
- var iframe = document.getElementById("frame_content");
- try{
- var bHeight = iframe.contentWindow.document.body.scrollHeight;
- var dHeight = iframe.contentWindow.document.documentElement.scrollHeight;
- var height = Math.max(bHeight, dHeight);
- iframe.height = height;
- }catch (ex){}
- }
- window.setInterval("reinitIframe()", 200);
- </script>

