首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

iframe从适大小

2013-01-23 
iframe自适大小var iframeHeight Math.min(window.document.documentElement.scrollHeight, window.docu

iframe自适大小
var iframeHeight = Math.min(window.document.documentElement.scrollHeight, window.document.body.scrollHeight);
 if(iframeHeight <= 300)
 {
  iframeHeight +=300;
 }
 iframeHeight+=10;
 $('#iframeDisplay').height(iframeHeight);
 $("#publishDisplay").height(iframeHeight);

热点排行