iframe.contentDocument
可以獲取到 iframe 里面的 document 元素侍郭,然后獲取高度即可設(shè)置眼耀。
<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>