/*iframe自适应内含网页高度和宽度*/
function reinitIframe(){
var iframe = document.getElementById("iframe_main");
try{
iframe.height = iframe.contentWindow.document.documentElement.scrollHeight;
iframe.width = iframe.contentWindow.document.documentElement.scrollWidth;
}catch (ex){}
}
window.setInterval("reinitIframe()", 200);
本文介绍了一种通过JavaScript实现的iframe自适应高度和宽度的方法。这种方法能够使iframe内的网页内容根据窗口大小自动调整,确保内容完整显示且不出现滚动条。此方案适用于需要将外部页面无缝嵌入到自己网站的情况。
2404

被折叠的 条评论
为什么被折叠?



