js跨域问题之跨域iframe自适应大小

问题:

A域名下的页面a.htm中通过iframe嵌入B域名下的页面b.html,由于b.html的大小等是不可预知而且会变化的,所以需要a.htm中的iframe自适应大小.

问题本质 :

js的跨域问题,因为要控制a.htm中iframe的大小就必须首先读取得到b.html的大小,A、B不属于同一个域,js的访问受限,读取不到b.html的大小.

 

解决方案:

首先前提是A,B是合作关系,b.html中能引入A提供的js

 

首先a.html中通过iframe引入了b.html

<iframe id="aIframe" height="0" width="0"  
src="http://www.b.com/html/b.html" frameborder="no" border="0px" marginwidth="0" 
marginheight="0" scrolling="no" allowtransparency="yes" ></iframe>

 

B在b.html中引入了A提供的js文件

<script language="javascript" type="text/javascript" src="http://www.a.com/js/a.js"></script>

 该js首先读取b.html的宽和高,然后创建一个iframe,src为和A同一个域的中间代理页面a_proxy.html,吧读取到的宽和高设置到src的hash里面

<iframe id="iframeProxy"  height="0" width="0"  src="http://www.a.com/html/a_proxy.html#width|height" style="display:none" ></iframe>

 a_proxy.html是A域下提供好的中间代理页面,它负责读取location.hash里面的width和height的值,然后设置与它同域下的a.html中的iframe的宽和高.

var pParentFrame = parent.parent.document.getElementById("aIframe");
var locationUrlHash = 
                 parent.parent.frames["aIframe"].frames["iframeProxy"].location.hash; 
pParentFrame.style.width = locationUrlHash.split("#")[1].split("|")[0]+"px"; 
pParentFrame.style.height = locationUrlHash.split("#")[1].split("|")[1]+"px";

 这样的话a.html中的iframe就自适应为b.html的宽和高了.

 

 

其他一些类似js跨域操作问题也可以按这个思路去解决

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值