自动调整大小的iframe,动态改变高度(更小或更大) [英] auto re-sizing iframe that dynamically changing height (smaller or bigger)

查看:183
本文介绍了自动调整大小的iframe,动态改变高度(更小或更大)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我知道有很多关于重新调整 iframe 的帖子,但是我发现的只是这段代码:

 < script type =text / javascriptlanguage =JavaScript> 
<! -
function autoResize(id){
var newheight;
var newwidth;

if(document.getElementById){
newheight = document.getElementById(id).contentWindow.document.body.scrollHeight;
newwidth = document.getElementById(id).contentWindow.document.body.scrollWidth;
}
document.getElementById(id).height =(newheight);
document.getElementById(id).width =(newwidth);
};
// - >
< / script>

以下是示例标记代码:

 < a href =index.phptarget =content>主页< / a> 
< a href =profile.phptarget =content>个人资料< / a>