samtiger


QQ:418148757
Name:yangchuan
数据加载中……
iframe自适应高度

Ext.onReady(function() {

 function reinitIframe(){
  var iframe = document.getElementById("frame_content");
  try{
   var bHeight = iframe.contentWindow.document.body.scrollHeight;
  }catch (ex){
     var bHeight = 0;
  } 
  try{
   var dHeight = iframe.contentWindow.document.documentElement.scrollHeight;
  }catch (ex){
      var dHeight = 0;
  }
  if(dHeight!=0 && bHeight!=0){
   var height = Math.min(bHeight, dHeight);
  }else{
   var height = Math.max(bHeight, dHeight);
  }
  if(Ext.isGecko){
   height = height+30;
  }
  iframe.style.height =  height+"px";
 }
 window.setInterval(function(){
  reinitIframe()
 }, 200);
});

posted on 2010-10-21 09:56 sam.chuan.yang 阅读(219) 评论(0)  编辑  收藏


只有注册用户登录后才能发表评论。


网站导航: