欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Iframe自适应高度兼容ie,firefox多浏览器

程序员文章站 2022-06-09 11:28:46
复制代码 代码如下:  function setcwinheight...
复制代码 代码如下:

<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="/default.asp?cateid=1"></iframe>



[ctrl+a 全选 注:如需引入外部js需刷新才能执行]