iframe自适应高度

    xiaoxiao2021-04-11  43

    <iframe src="edit-index.html" width="969" id="my_iframe" frameborder="no" marginwidth="0" marginheight="0" scrolling="no"></iframe>

    <script language="JavaScript">

      $(function(){   var document_height="";   //iframe自适应高度   var timeIframe;   window.οnlοad=function(){   timeIframe=setTimeout(GetIframeStatus,10);   }   function GetIframeStatus()   {   var iframe = document.getElementById("my_iframe");   var iframeWindow=iframe.contentWindow;   if(iframeWindow.document.readyState=="complete")   {   var iframeWidth,iframeHeight;   iframeWidth=iframeWindow.document.documentElement.scrollWidth;   iframeHeight=iframeWindow.document.documentElement.scrollHeight;   iframe.width=iframeWidth;   iframe.height=iframeHeight;   }   else   {   timeIframe=setTimeout(GetIframeStatus,10);   }   }   })

    </script>

    转载请注明原文地址: https://ju.6miu.com/read-666514.html

    最新回复(0)