iframe高度自适应

xiaoxiao2021-02-28  10

<iframe id="myIframe" width="100%" height="700px" frameborder="0" scrolling="no" onload="changeFrameHeight()" src="$url"> </iframe> <script type="text/javascript"> document.domain = 'me.com'; function changeFrameHeight(){ var ifm= document.getElementById("myIframe"); var bHeight = ifm.contentWindow.document.body.scrollHeight; var dHeight = ifm.contentWindow.document.documentElement.scrollHeight; var height = Math.max(bHeight, dHeight); ifm.height = height; } </script>
转载请注明原文地址: https://www.6miu.com/read-2500143.html

最新回复(0)