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