码迷,mamicode.com
首页 > 其他好文 > 详细

iframe 自适应

时间:2014-12-16 13:19:41      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:blog   http   ar   io   on   log   cti   ad   html   

<html>
<head>
<script>
function SetCwinHeight(obj)
{
var cwin=obj;
if (document.getElementById)
{
if (cwin && !window.opera)
{
if (cwin.contentDocument && cwin.contentDocument.body.offsetHeight)
cwin.height = cwin.contentDocument.body.offsetHeight + 20; //FF NS
else if(cwin.Document && cwin.Document.body.scrollHeight)
cwin.height = cwin.Document.body.scrollHeight + 10;//IE
}
else
{
if(cwin.contentWindow.document && cwin.contentWindow.document.body.scrollHeight)
cwin.height = cwin.contentWindow.document.body.scrollHeight;//Opera
}
}
}
</script>
</head>
<body>
<iframe src="http://www.cnblogs.com/" onload="SetCwinHeight(this);" width="100%" height="100%">
</body>
</html>

iframe 自适应

标签:blog   http   ar   io   on   log   cti   ad   html   

原文地址:http://www.cnblogs.com/benu/p/4166813.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!