zoukankan
html css js c++ java
解决IFRAM自动适应高度的问题,也能适应FIREFOX
在IFRAME要包含的页面中引用下面的JS就可以解决问题,我测试过了,没有问题。
Code
1
<
script language
=
"
javascript
"
type
=
"
text/javascript
"
>
function iframeAutoFit()
2
{
3
var ex;
4
try
5
{
6
if
(window
!=
parent)
7
{
8
var a
=
parent.document.getElementsByTagName(
"
IFRAME
"
);
9
for
(var i
=
0
; i
<
a.length; i
++
)
10
{
11
if
(a[i].contentWindow
==
window)
12
{
13
var h1
=
0
, h2
=
0
;
14
if
(document.documentElement
&&
document.documentElement.scrollHeight)
15
{
16
h1
=
document.documentElement.scrollHeight;
17
}
18
if
(document.body) h2
=
document.body.scrollHeight;
19
20
var h
=
Math.max(h1, h2);
21
if
(document.all)
{h
+=
4
;}
22
if
(window.opera)
{h
+=
1
;}
23
a[i].style.height
=
h
+
"
px
"
;
24
}
25
}
26
}
27
}
28
catch
(ex)
{}
29
}
30
if
(document.attachEvent)
31
{
//
IE/opera
32
window.attachEvent(
"
onload
"
, iframeAutoFit);
33
window.attachEvent(
"
onresize
"
, iframeAutoFit);
34
}
35
else
36
{
//
Mozilla/Firefox
37
window.addEventListener(
'
load
'
, iframeAutoFit,
false
);
38
window.addEventListener(
'
resize
'
, iframeAutoFit,
false
);
39
}
40
</
script
>
41
查看全文
相关阅读:
GDB编辑、搜索源码以及在线帮助
GDB查看栈信息
GDB信号处理
GDB反向调试
GDB调试多进程程序
GDB后台调试命令
GDB non-stop模式
GDB调试多线程程序
GDB禁用删除断点
解决Mac OS下Eclipse、IntelliJ IDEA打开其他窗口默认全屏
原文地址:https://www.cnblogs.com/shineqiujuan/p/1262187.html
最新文章
python 日志记录与使用配置文件
Centos8 下安装mysqlclient
Java动态代理
cheat.sh 内容速查 相当于linux里面的man文件一样
curl方式执行shell脚本时如何传参
文件同步 rsync+lsync Rsync+sersync
ipset脚本--封nginx的IP
Immutable.js 是如何实现数据结构持久化的?
如何安装Unity ECS插件Entities
Go编译成C动态链接库和静态链接库
热门文章
ECS
C#断点续传功能类库
多进程与多线程,python程序实例
Adaptive Training Sample Selection (ATSS)
springcloud gateway 采用 netty作为服务容器中的bug
防火墙ACL配置自动化方案探讨
服务器报Input/output error问题
JVM体系结构与工作方式
深入分析ClassLoader工作机制
浮点型的原理介绍及在内存中的存储形式
Copyright © 2011-2022 走看看