iframe 里的高度自适应

Posted 淡定总是那么难

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iframe 里的高度自适应相关的知识,希望对你有一定的参考价值。

  由于公司里的很多东西都要用到iframe 导致我不得不各种百度

 

首先是自适应高度

 

// document.domain = "caibaojian.com";
function setIframeHeight(iframe) {
if (iframe) {
var iframeWin = iframe.contentWindow || iframe.contentDocument.parentWindow;
if (iframeWin.document.body) {
iframe.height = iframeWin.document.documentElement.scrollHeight || iframeWin.document.body.scrollHeight;
}
}
};

window.onload = function () {
setIframeHeight(document.getElementById(‘external-frame‘));
};

其他的请到这个链接下查看:http://caibaojian.com/iframe-adjust-content-height.html

 

 

还有一个就是iframe 里的右键禁用方法:

<script>  
    document.oncontextmenu = function(){  
        return false  
    }  
</script>  

这段代码需要放在iframe内部才能生效

以上是关于iframe 里的高度自适应的主要内容,如果未能解决你的问题,请参考以下文章

Iframe的代码怎么写才能满足我的自适应内容的高度的要求啊?

如何让textarea的高度自适应

如何用CSS使图片自适应显示宽度

iframe 里的高度适应的问题

小程序 textarea高度自适应?

iOS UITextView自适应高度UITextContainerView抖动问题