html中高度随内容变化而变化,iframe的高度随内容变化而变化的代码
iframe框架高度随内容的变化而变化的代码。
function AutoIframe()
{
if(document.readyState!=’complete’)
{
setTimeout( function(){AutoIframe();},25 );
return;
}
else
{
var ifobj=document.getElementById(“frmsrc”);
ifobj.height= ifobj.contentWindow.document.body.scrollHeight;
}
}
//PS: XXX.htm不可跨域
function SetWinHeight(obj)
{
var win=obj;
if (document.getElementById)
{
if (win && !window.opera)
{
if (win.contentDocument && win.contentDocument.body.offsetHeight)
win.height = win.contentDocument.body.offsetHeight;
else if(win.Document && win.Document.body.scrollHeight)
win.height = win.Document.body.scrollHeight;
}
}
}
还没有评论,来说两句吧...