iframe auto height
程序员文章站
2022-05-29 07:53:40
...
<script type="text/javascript">
function SetCwinHeight(iframeObj){
if (document.getElementById){
if (iframeObj && !window.opera){
if (iframeObj.contentDocument && iframeObj.contentDocument.body.offsetHeight){
iframeObj.height = iframeObj.contentDocument.body.offsetHeight;
}else if(document.frames[iframeObj.name].document && document.frames[iframeObj.name].document.body.scrollHeight){
iframeObj.height = document.frames[iframeObj.name].document.body.scrollHeight;
}
}
}
}
</script>
<iframe width="100%" name="frameContent" onload="SetCwinHeight(this)" frameborder="0" src="*"></iframe>
上一篇: Ubuntu下远程访问Jupyter Notebook 配置
下一篇: goweb-安全与加密
推荐阅读
-
ASP.NET中iframe框架点击左边页面链接 右边显示链接页面内容
-
MySQL 序列 AUTO_INCREMENT详解及实例代码
-
HTML5 window/iframe跨域传递消息 API介绍
-
JS实现iframe自适应高度的方法示例
-
使用iframe作为日历的载体,不再被select和flash等控件挡住的日期输入框
-
jquery3和layui冲突导致使用layui.layer.full弹出全屏iframe窗口时高度152px问题
-
Oracle 自增(auto increment) 或 标识字段的建立方法
-
H5 canvas中width、height和style的宽高区别详解
-
layui多iframe页面控制定时器运行的方法
-
iOS应用开发中使用Auto Layout来适配不同屏幕尺寸