<iframe onload="Javascript:SetWinHeight(this)" id="frame1" name="content1" src="chenGuoZS/7.mht" align="middle" height="100%" frameborder="none" border="0" width="758px" scroll="no"></iframe>
并且使用JS:
function SetWinHeight(obj)
{
var win=obj;
if (document.getElementById){
if (win && !window.opera){
if (win.contentDocument && win.contentDocument.body.offsetHeight)
win.style.height = win.contentDocument.body.offsetHeight;
else if(win.Document && win.Document.body.scrollHeight)
win.style.height = win.Document.body.scrollHeight;
}
}
}
本文介绍了一种使用JavaScript动态调整IFrame高度的方法。通过监听IFrame内容的变化并相应地调整其高度,确保IFrame始终能完美适配其内容的高度,避免滚动条出现的同时保持页面布局的整洁。

7497

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



