1.在被嵌入頁面獲取iframe的src
<iframe id="workSummaryIframe" src="" height="650px" width="99%" scrolling="yes" class="cust" frameborder="0"> //寫在被嵌入頁面 window.parent.document.querySelector(".cust").contentWindow.location.href;
2.iframe嵌入頁面會出現兩個滾動條,解決這個問題可以設置iframe高度和內部頁面高度保持一致
let abc = document.getElementById('workSummaryIframe'); //頁面加載時重新獲取並設置高度設置 abc.onload = function () { let height = document.body.offsetHeight-140; abc.style.height = height + 'px'; } //頁面大小發生變化是重新設置 window.onresize = function(){ let height = document.body.offsetHeight-140; abc.style.height = height + 'px'; }