Iframe自动适应宽度和高度(both IE and Firefox are ok)

吃可爱长大的小学妹 提交于 2020-03-17 01:04:42
只需修改框架页
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>iframe</title>
</head>
<body>
<script type="text/javascript">
 
function SetCwinHeight(){
  
var bobo=document.getElementById("bobo"); //iframe id
  if (document.getElementById){
   
if (bobo && !window.opera){
    
if (bobo.contentDocument && bobo.contentDocument.body.offsetHeight){
     bobo.height 
= bobo.contentDocument.body.offsetHeight;
    }
else if(bobo.Document && bobo.Document.body.scrollHeight){
     bobo.height 
= bobo.Document.body.scrollHeight;
    }
   }
  }
 }
</script>
<iframe width="100%" id="bobo" onload="Javascript:SetCwinHeight()" height="1" frameborder="0" src="IFrame_myPage.aspx"></iframe>
这里有什么?
</body>
</html>

如果需要调用其他网站提供的IFrame,把代码写在IFrame_myPage.aspx中,不要直接写src="***"
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!