您好,登錄后才能下訂單哦!
本篇內容主要講解“如何解決location.hash跨域iframe自適應問題”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“如何解決location.hash跨域iframe自適應問題”吧!
頁面域關系:
主頁面 a.html 所屬域A:www.taobao.com
被 iframe 的頁面 b.html 所屬域B:www.alimama.com,假設地址:http://www.neiyidaogou.com/
實現效果:
A域名下的頁面 a.html 中通過 iframe 嵌入B域名下的頁面 b.html,由于 b.html 的寬度和高度是不可預知而且會變化的,所以需要 a.html中的iframe 自適應大小.
問題本質:
js 對跨域 iframe 訪問問題,因為要控制 a.html 中 iframe 的高度和寬度就必須首先讀取得到 b.html 的大小,A、B不屬于同一個域,瀏覽器為了安全性考慮,使js跨域訪問受限,讀取不到 b.html 的高度和寬度.
解決方案:
引入代理代理頁面 c.html 與 a.html 所屬相同域 A,c.html 是A域下提供好的中間代理頁面,假設 c.html 的地址:www.taobao.com/c.html,它負責讀取 location.hash 里面的 width 和 height 的值,然后設置與它同域下的 a.html 中的 iframe 的寬度和高度.
代碼如下:
a.html 代碼
首先 a.html 中通過 iframe 引入了 b.html
<iframe id=”b_iframe” height=”0″ width=”0″ src=”http://www.neiyidaogou.com/” frameborder=”no” border=”0px” marginwidth=”0″ marginheight=”0″ scrolling=”no” allowtransparency=”yes” ></iframe>
b.html代碼
<script type=”text/javascript”>var b_width = Math.max(document.documentElement.clientWidth,document.body.clientWidth);var b_height = Math.max(document.documentElement.clientHeight,document.body.clientHeight);var c_iframe = document.getElementById(”c_iframe”); //liehuo.netc_iframe.src = c_iframe.src+”#”+b_width+”|”+b_height; //http://www.neiyidaogou.com/#width|height”}</script><!–js讀取b.html的寬和高,把讀取到的寬和高設置到和a.html在同一個域的中間代理頁面車c.html的src的hash里面–><iframe id=”c_iframe” height=”0″ width=”0″ src=”http://www.neiyidaogou.com/” style=”display:none” ></iframe>
c.html代碼
<script type=”text/javascript”>var b_iframe = parent.parent.document.getElementById(”b_iframe”);var hash_url = window.location.hash;var hash_width = hash_url.split(”#”)[1].split(”|”)[0]+”px”;var hash_height = hash_url.split(”#”)[1].split(”|”)[1]+”px”;b_iframe.style.width = hash_width;b_iframe.style.height = hash_height;</script>
a.html 中的 iframe 就可以自適應為 b.html 的寬和高了.
其他一些類似 js 跨域操作問題也可以按這個思路去解決
到此,相信大家對“如何解決location.hash跨域iframe自適應問題”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。