js跨域問題之跨域iframe自適應大小實現代碼

來源:互聯網
上載者:User

複製代碼 代碼如下:<body onload="javascript: setHeight();">
<script>
function setHeight(){
var dHeight = document.documentElement.scrollHeight;
var t = document.createElement("div");
t.innerHTML = '<iframe id="kxiframeagent" src="http://rest.kaixin001.com/api/agent.html#'+dHeight+'"scrolling="yes" height="0px" width="0px"></iframe>';
document.documentElement.appendChild(t.firstChild);
}
</script>

我想著跨域如何解決啊!後來去網上搜尋了一下子 恍然大悟

具體如下 我是複製過來了 大家重點理解一下子它的實現思路 :

問題:

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>
<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檔案

Html代碼 複製代碼 代碼如下:<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裡面

Html代碼 複製代碼 代碼如下:<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的寬和高.

Js代碼 複製代碼 代碼如下: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";
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跨網域作業問題也可以按這個思路去解決

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.