美文网首页
根据 iframe 内容设置高度

根据 iframe 内容设置高度

作者: 蛮吉大人123 | 来源:发表于2018-09-15 13:04 被阅读6次

iframe.contentDocument可以获取到 iframe 里面的 document 元素,然后获取高度即可设置。

<iframe id="J_crf_iframe" style="border: 0; width: 100%" src="http://www.xxx.com" />
<script>
const iframe = document.getElementById('J_crf_iframe');
    if (iframe) {
      iframe.onload = () => {
        iframe.height = iframe.contentDocument.documentElement.scrollHeight || iframe.contentDocument.body.scrollHeight;
      };
    }
</script>

相关文章

网友评论

      本文标题:根据 iframe 内容设置高度

      本文链接:https://www.haomeiwen.com/subject/nxgzgftx.html