在主页面试iframe自适应高度JS,兼容IE6/' target='_blank'>兼容IE6.0,IE7.0,火狐,谷歌
注意:导入的框架页必须在同一网站下。
代码片段:
<body>
<iframe id="frame_content" src="d.htm" scrolling="no" frameborder="0" style="width:100%; _height:100%;"></iframe>
<script type="text/javascript">
function reinitIframe(){
var iframe = document.getElementById("frame_content");
try{
iframe.height = iframe.contentWindow.document.documentElement.scrollHeight;
}catch (ex){}
}
window.setInterval("reinitIframe()", 200);
</script>
</body>