iframe 裏的高度自適應
阿新 • • 發佈:2018-03-27
|| 裏的 () iframe function document height 其他 pos
由於公司裏的很多東西都要用到iframe 導致我不得不各種百度
首先是自適應高度
// document.domain = "caibaojian.com"; function setIframeHeight(iframe) { if (iframe) { var iframeWin = iframe.contentWindow || iframe.contentDocument.parentWindow; if (iframeWin.document.body) { iframe.height = iframeWin.document.documentElement.scrollHeight || iframeWin.document.body.scrollHeight; } } }; window.onload= function () { setIframeHeight(document.getElementById(‘external-frame‘)); };
其他的請到這個鏈接下查看:http://caibaojian.com/iframe-adjust-content-height.html
還有一個就是iframe 裏的右鍵禁用方法:
<script> document.oncontextmenu = function(){ return false } </script>
這段代碼需要放在iframe內部才能生效
iframe 裏的高度自適應