iframe自适大小

来源:互联网 发布:gbk转utf java 编辑:程序博客网 时间:2024/05/22 12:05
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);
原创粉丝点击