通过ifame指向的页面高度调整iframe的高度
更新时间:2006年10月05日 00:00:00 作者:
通过ifame指向的页面高度调整iframe的高度
1.htm的代码:
<iframe src=2.htm id=ifrm></iframe>
2.htm的代码:
<script>
function resize()
{parent.document.all.ifrm.height=document.body.scrollHeight;
parent.document.all.ifrm.width=document.body.scrollWidth;
}
</script>
<body onload="resize()">
</body>
1.htm的代码:
<iframe src=2.htm id=ifrm></iframe>
2.htm的代码:
<script>
function resize()
{parent.document.all.ifrm.height=document.body.scrollHeight;
parent.document.all.ifrm.width=document.body.scrollWidth;
}
</script>
<body onload="resize()">
</body>
相关文章
用 Javascript 验证表单(form)中的单选(radio)值
在用 Javascript 验证表单(form)中的单选框(radio)是否选中时,很多新手都会遇到问题,原因是 radio 和普通的文本框在获取值的时候有很大不同.2009-09-09javascript获得光标所在的文本框(text/textarea)中的位置
移动鼠标,得到单元格所在表中的位置的js代码,测试兼容firefox,需要的朋友可以参考下。2009-12-12
最新评论