读书人

iframe从适大小

发布时间: 2013-01-23 10:44:49 作者: rapoo

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);

读书人网 >Web前端

热点推荐