2 回答
TA贡献1831条经验 获得超10个赞
你照我的做法试试:
1,
function SetCwinHeight(obj)
{
var cwin=obj;
if (document.getElementById)
{
if (cwin && !window.opera)
{
if (cwin.contentDocument && cwin.contentDocument.body.offsetHeight)
cwin.height = cwin.contentDocument.body.offsetHeight;
else if(cwin.Document && cwin.Document.body.scrollHeight)
cwin.height = cwin.Document.body.scrollHeight;
}
}
}
2,在iframe里面加上
onload="Javascript:SetCwinHeight(this)"试试。
TA贡献1802条经验 获得超5个赞
这样绝对可以:
<body style="margin:0;padding:0;">
<div style="width:20%; height:20px; background-color:gray; float: left;"></div>
<iframe frameborder="0" src="http://baidu.com/" style="width:80%; height:120px; float: right;">
</body>
添加回答
举报