-
Notifications
You must be signed in to change notification settings - Fork 0
/
proxy.html
42 lines (40 loc) · 1.11 KB
/
proxy.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<script>
var originHeight = 0;
function autoHeight(){
// 当前页面地址 `http://xxx.xx/proxy.html#height=2000`
var hash = location.hash;
// 获取height的值
var height = hash.split('=')[1];
// 调用主域全局设置高度函数
// `parent.parent` 同域可以访问
//console.log(originHeight, height)
if(originHeight != height) { // 优化
originHeight = height;
parent.parent.ajustHeight(height);
}
}
// 页面加载完成执行
window.onload = function(){
// 直接设置
autoHeight();
// 当父级页面内容有变动,修改了当前url时
// 在ie11的ie7下 'onhashchange' in window = true
// ie8+,chrome,ff,ie8支持onhaschange
if('onhashchange' in window && document.querySelector) { // 标准浏览器,hash改变,立刻触发设置高度事件
window.onhashchange = autoHeight;
} else { // 兼容ie7-
setInterval(autoHeight, 1e3);
}
// 定时任务
//setInterval(autoHeight, 1000);
}
</script>
</body>
</html>