我是靠谱客的博主 雪白舞蹈,最近开发中收集的这篇文章主要介绍Iframe自适应高度兼容ie,firefox多浏览器,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

复制代码 代码如下:

<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需刷新才能执行]

最后

以上就是雪白舞蹈为你收集整理的Iframe自适应高度兼容ie,firefox多浏览器的全部内容,希望文章能够帮你解决Iframe自适应高度兼容ie,firefox多浏览器所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(145)

评论列表共有 0 条评论

立即
投稿
返回
顶部