js使用iframe嵌入頁面問題


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';
}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM