使Iframe的宽高自适应,并且兼容IE 和NC浏览器

用Iframe时,高和宽是直接定制好的。很难自适应引用的页面。这时就要用别的方法来进行了。以下整理了2种方法。以做备用:

1,适应内容自动扩展,在parent页面上加处理script:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<script language=JavaScript>
function autoResize(){
  try{
   document.all["content"].style.height=content.document.body.scrollHeight;
 document.all["content"].style.width=content.document.body.scrollWidth;
  }
  catch(e){}
}
</script>

<style type="text/css">
<!--
body {
 margin-left: 100px;
 margin-top: 100px;
 margin-right: 100px;
 margin-bottom: 100px;
 background-color: #CCCCCC;
}
-->
</style></head>

<body>
<iframe name="content" style="aho:expression(autoResize())"  width="100%" frameborder=0 src="1.htm" scrolling=no></iframe>
</body>
</html>

2.在引用的文件上加script

function changeIframeHeight() //自动改变 Iframe 的高度
{
if(top != self)
   window.parent.document.getElementById(self.name).height = document.body.scrollHeight;
}

function window.onload()
{
   changeIframeHeight(); //改变 Iframe 高度
}

把上面那个放到需要自适应的页面中,用javascript套用就可以了

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值