iframe自動適應高度
點擊數: 1974
我覺得這個代碼方便好用
- <script type="text/javascript">
- function SetCwinHeight()
- {
- var iframeid=document.getElementById("mainframe"); //iframe id
- if (document.getElementById)
- {
- if (iframeid && !window.opera)
- {
- if (iframeid.contentDocument && iframeid.contentDocument.body.offsetHeight)
- {
- iframeid.height = iframeid.contentDocument.body.offsetHeight;
- }else if(iframeid.Document && iframeid.Document.body.scrollHeight)
- {
- iframeid.height = iframeid.Document.body.scrollHeight;
- }
- }
- }
- }
- </script>
- <iframe src="https://adanaa.com/url/" name="mainframe" width="100%" marginwidth="0" marginheight="0" onload="Javascript:SetCwinHeight()" scrolling="No" frameborder="0" id="mainframe" ></iframe>