这样的页面第一次出现是页面填充满的,可是当页面缩小的时候,右边会有空白这个问题很不可思议
你照我的做法试试:
1,
[code="js"]
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;
}
}
}
[/code]
2,在iframe里面加上
onload="Javascript:SetCwinHeight(this)"试试。
这个直接设置iframe宽度100%就可以了吧
这样绝对可以: