请在下面查看我的代码 -
<script>
function autoResize(myiframe){
var newheight;
var newwidth;
if(document.getElementById){
newheight=document.getElementById(myiframe).contentWindow.document.body.scrollHeight;
newwidth=document.getElementById(myiframe).contentWindow.document.body.scrollWidth;
}
document.getElementById(myiframe).height= (newheight+20) + "px";
document.getElementById(myiframe).width= (newwidth) + "px";
}
</script>
<iframe id="myiframe" src="http://www.learnphp.in" width="100%" onload="autoResize('myiframe')"></iframe>
我已更改此代码,但在使用相对路径(内部页面)时工作正常,例如files/test.html
,mypage.html
等。但它不适用于绝对路径(外部页面),如http://www.learnphp.in
请建议我如何在iframe中显示外部页面自动高度?