iframe自适应高度JS代码特效
作者:佳明妈 来源:懒人建站 2009-09-09 人气:在主页面试iframe自适应高度JS代码特效,兼容IE6.0IE7.0火狐谷歌等浏览器,注意:导入的框架页必须在同一网站下。不能跨域。
在主页面试iframe自适应高度JS,兼容IE6.0IE7.0火狐谷歌
注意:导入的框架页必须在同一网站下。
代码片段:
<body>
<iframe id="frame_content" src="d.htm" scrolling="no" frameborder="0" style="width:100%; _height:100%;"></iframe>
<script type="text/javascript">
function reinitiframe(){
var iframe = document.getElementById("frame_content");
try{
iframe.height = iframe.contentWindow.document.documentElement.scrollHeight;
}catch (ex){}
}
window.setInterval("reinitiframe()" 200);
</script>
</body>
↓ 查看全文
iframe自适应高度JS代码特效由懒人建站收集整理,您可以自由传播,请主动带上本文链接
懒人建站就是免费分享,觉得有用就多来支持一下,没有能帮到您,懒人也只能表示遗憾,希望有一天能帮到您。
iframe自适应高度JS代码特效-最新评论