时间:2021-07-01 10:21:17 帮助过:4人阅读
<iframe id="mainFrame" name="mainFrame" src="/zwgk/hsearchview" width="740" frameborder="0" scrolling="no" scrolling="no" frameborder="0" > </iframe>
<script type="text/javascript" language="javascript">
function reinitIframe(){
var iframe = document.getElementById("mainFrame");
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()", 100);
</script>希望本文所述对大家JavaScript程序设计有所帮助。
更多JS实现iframe自适应高度的方法示例相关文章请关注PHP中文网!