JS怎么控制IFRAME高度自动适应内容而不出现滚动条

我有一框架如下functionSetCwinHeight(divid){varcwin=$(divid);if(document.getElementById){if(c... 我有一框架如下

function SetCwinHeight(divid)
{
var cwin=$(divid);
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;
}
}
}
}

<IFRAME id=uBox name=uBox src="1.html" frameBorder=0 width=100% scrolling=no onload=Javascript:SetCwinHeight('uBox')></IFRAME>

id=uBox的框架的高度是根据1.html来决定的,现在有一个问题,就是当1.html的内容如下时

<html>
<head>
<title>说明问题</title>
</head>
<body>
<table>
<tr>
<td>
<table>
<tr><td>左边标题1</td></tr>
<tr><td>左边标题2</td></tr>
<tr><td>左边标题3</td></tr>
<tr><td>左边标题4</td></tr>
<tr><td>左边标题5</td></tr>
<table>
</td>
<td>
<IFRAME id=rightMain name=rightmain src="" frameBorder=0 width=99% scrolling=no onload=Javascript:SetCwinHeight('rightMain')></IFRAME>
</td>
</tr>
</table>
</body>
</html>

id=uBox的框架的高度只根据
<td>
<table>
<tr><td>左边标题1</td></tr>
<tr><td>左边标题2</td></tr>
<tr><td>左边标题3</td></tr>
<tr><td>左边标题4</td></tr>
<tr><td>左边标题5</td></tr>
<table>
</td>
来决定,而不考虑
<td>
<IFRAME id=rightMain name=rightmain src="" frameBorder=0 width=99% scrolling=no onload=Javascript:SetCwinHeight('rightMain')></IFRAME>
</td>
,我现在想让id=uBox的框架的高度不仅是根据内容来决定,还得要根据id=rightMain的子页面框架的高度来决定,这样子的话,我的SetCwinHeight(divid)要怎么改呀,请大家帮帮忙
展开
 我来答
佑之以神
2010-04-24
知道答主
回答量:3
采纳率:0%
帮助的人:0
展开全部
<script type="text/javascript">
function setHeight(){
var iframe = document.getElementById("iframe_id");
try{
var aHeight = iframe.contentWindow.document.body.scrollHeight;
var bHeight = iframe.contentWindow.document.documentElement.scrollHeight;
var height = Math.max(aHeight, bHeight);//取最高值;
iframe.height = height;
}catch (e){}
}
</script>

在iframe中把height="XXX"不要 加入onload="setHeight()"
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式