跨域设置iframe的高度自适应

css方法

Iframe的强大功能偶就不多说了,它不但被开发人员经常运用,而且黑客们也常常使用它,总之用过的人知道它的强大之处,但是Iframe有个致命的“BUG”就是iframe的高度无法自动适应,这一点让很多人都头疼万分。百度或是谷歌一下,确实很多解决方法,但尝试一下,会发现问题很多:浏览器兼容性差不能自适应仅支持同域Iframe等诸多问题,尤其是跨域Iframe高度自适应问题。网上根本找不到一种可行的方案(唯一有一种提到加入代理页面的,经过测试发现无用)。难道真的没有一种可行的解决方案了吗? No,下面小鸣子和大家分享一种强大的方法,代码如下:


<html>
<head>
<style>
body {margin-left: 0px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;overflow: hidden;}
</style>
</head>

<body>
<iframe src=\'#\'" //hi.baidu.com/' width='100%' height='100%' frameborder='0' name="_blank" id="_blank" ></iframe>

</body>

</html>


代码强大之处:

1. 该方法完美兼容IE6,7,8 ,Fire fox,chrome,opera 等主流的浏览器;

2.同域,跨域皆支持;

3.不调用任何JS脚本;

注意三点.

1. 文件开头不能是:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

必须 是<html>开头

2. body样式中的 overflow: hidden; 绝对不对省略;

3.Iframe 中的 height='100%' 以及 滚动条不能设为no(默认是yes,不用设置即可)

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

js方法

假设 A.html domain是 localhost, B.html domain 是 127.0.0.1 (跨域)

这里使用 localhost 与 127.0.0.1 只是方便测试,localhost 与 127.0.0.1已经不同一个域,因此执行效果是一样的。

实际使用时换成 www.domaina.com 与 www.domainb.com 即可。

A.html中iframe 嵌入 B.html,name=myframe

A.html有js function fMain()

B.html有js function fIframe()

需要实现 A.html 调用 B.html 的 fIframe(),B.html 调用 A.html 的 fMain() (跨域调用)


如果使用上面同域的方法,浏览器判断A.html 与 B.html 不同域,会有错误提示。

Uncaught SecurityError: Blocked a frame with origin "http://localhost" from accessing a frame with origin "http://127.0.0.1". Protocols, domains, and ports must match.


实现原理:

因为浏览器为了安全,禁止了不同域访问。因此只要调用与执行的双方是同域则可以相互访问


首先,A.html 如何调用B.html的 fIframe方法

1.在A.html 创建一个 iframe

2.iframe的页面放在 B.html 同域下,命名为execB.html

3.execB.html 里有调用B.html fIframe方法的js调用

[javascript]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. <script type="text/javascript">  
  2. parent.window.myframe.fIframe(); // execute parent myframe fIframe function  
  3. </script>  

这样A.html 就能通过 execB.html 调用 B.html 的 fIframe 方法了。

同理,B.html 需要调用A.html fMain方法,需要在B.html 嵌入与A.html 同域的 execA.html 

execA.html 里有调用 A.html fMain 方法的js 调用

[javascript]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. <script type="text/javascript">  
  2. parent.parent.fMain(); // execute main function  
  3. </script>  
这样就能实现 A.html 与 B.html 跨域相互调用。

A.html

[html]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  
  2. <html>  
  3.  <head>  
  4.   <meta http-equiv="content-type" content="text/html; charset=utf-8">  
  5.   <title> main window </title>  
  6.   
  7.   <script type="text/javascript">  
  8.   
  9.   // main js function  
  10.   function fMain(){  
  11.     alert('main function execute success');  
  12.   }  
  13.   
  14.   // exec iframe function  
  15.   function exec_iframe(){  
  16.     if(typeof(exec_obj)=='undefined'){  
  17.         exec_obj = document.createElement('iframe');  
  18.         exec_obj.name = 'tmp_frame';  
  19.         exec_obj.src = 'http://127.0.0.1/execB.html';  
  20.         exec_obj.style.display = 'none';  
  21.         document.body.appendChild(exec_obj);  
  22.     }else{  
  23.         exec_obj.src = 'http://127.0.0.1/execB.html?' + Math.random();  
  24.     }  
  25.   }  
  26.   </script>  
  27.   
  28.  </head>  
  29.   
  30.  <body>  
  31.   <p>A.html main</p>  
  32.   <p><input type="button" value="exec iframe function" onclick="exec_iframe()"></p>  
  33.   <iframe src="http://127.0.0.1/B.html" name="myframe" width="500" height="100"></iframe>  
  34.  </body>  
  35. </html>  

B.html

[html]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  
  2. <html>  
  3.  <head>  
  4.   <meta http-equiv="content-type" content="text/html; charset=utf-8">  
  5.   <title> iframe window </title>  
  6.   
  7.   <script type="text/javascript">  
  8.   // iframe js function   
  9.   function fIframe(){  
  10.     alert('iframe function execute success');  
  11.   }  
  12.   
  13.   // exec main function  
  14.   function exec_main(){  
  15.     if(typeof(exec_obj)=='undefined'){  
  16.         exec_obj = document.createElement('iframe');  
  17.         exec_obj.name = 'tmp_frame';  
  18.         exec_obj.src = 'http://localhost/execA.html';  
  19.         exec_obj.style.display = 'none';  
  20.         document.body.appendChild(exec_obj);  
  21.     }else{  
  22.         exec_obj.src = 'http://localhost/execA.html?' + Math.random();  
  23.     }  
  24.   }  
  25.   </script>  
  26.   
  27.  </head>  
  28.   
  29.  <body>  
  30.   <p>B.html iframe</p>  
  31.   <p><input type="button" value="exec main function" onclick="exec_main()"></p>  
  32.  </body>  
  33. </html>  

execA.html

[html]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  
  2. <html>  
  3.  <head>  
  4.   <meta http-equiv="content-type" content="text/html; charset=utf-8">  
  5.   <title> exec main function </title>  
  6.  </head>  
  7.   
  8.  <body>  
  9.     <script type="text/javascript">  
  10.         parent.parent.fMain(); // execute main function  
  11.     </script>  
  12.  </body>  
  13. </html>  

execB.html

[html]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  
  2. <html>  
  3.  <head>  
  4.   <meta http-equiv="content-type" content="text/html; charset=utf-8">  
  5.   <title> exec iframe function </title>  
  6.  </head>  
  7.   
  8.  <body>  
  9.     <script type="text/javascript">  
  10.         parent.window.myframe.fIframe(); // execute parent myframe fIframe function  
  11.     </script>  
  12.  </body>  
  13. </html>  

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值