主頁 > 知識(shí)庫 > iframe 自適應(yīng)大小實(shí)現(xiàn)代碼

iframe 自適應(yīng)大小實(shí)現(xiàn)代碼

熱門標(biāo)簽:縣域地圖標(biāo)注點(diǎn) 電銷機(jī)器人外呼失敗怎么回事 400電話座機(jī)怎么辦理 吃雞地圖標(biāo)注設(shè)置 齊齊哈爾地圖標(biāo)注地點(diǎn) 天津銷售電銷機(jī)器人公司 邵陽市地圖標(biāo)注app 400電話申請好不好 南寧銷售外呼系統(tǒng)線路商
頁面域關(guān)系:

主頁面a.html所屬域A:www.jb51.net
被iframe的頁面b.html所屬域B:www.jb51.cn,假設(shè)地址:http://www.jb51.cn/b.html

實(shí)現(xiàn)效果:

A域名下的頁面a.html中通過iframe嵌入B域名下的頁面b.html,由于b.html的寬度和高度是不可預(yù)知而且會(huì)變化的,所以需要a.html中的iframe自適應(yīng)大小.

問題本質(zhì):

js對跨域iframe訪問問題,因?yàn)橐刂芶.html中iframe的高度和寬度就必須首先讀取得到b.html的大小,A、B不屬于同一個(gè)域,瀏覽器為了安全性考慮,使js跨域訪問受限,讀取不到b.html的高度和寬度.

解決方案:

引入代理代理頁面c.html與a.html所屬相同域A,c.html是A域下提供好的中間代理頁面,假設(shè)c.html的地址:www.jb51.net/c.html,它負(fù)責(zé)讀取location.hash里面的width和height的值,然后設(shè)置與它同域下的a.html中的iframe的寬度和高度.

代碼如下:

a.html代碼

首先a.html中通過iframe引入了b.html
<iframe id=”b_iframe” height=”0″ width=”0″ src=”http://www.jb51.cn/b.html” frameborder=”no” border=”0px” marginwidth=”0″ marginheight=”0″ scrolling=”no” allowtransparency=”yes” ></iframe>

b.html代碼

復(fù)制代碼
代碼如下:

<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”);
c_iframe.src = c_iframe.src+”#”+b_width+”|”+b_height; //https://www.jb51.net/c.html#width|height”
}
</script>
<!–js讀取b.html的寬和高,把讀取到的寬和高設(shè)置到和a.html在同一個(gè)域的中間代理頁面車c.html的src的hash里面–>
<iframe id=”c_iframe” height=”0″ width=”0″ src=”https://www.jb51.net/c.html” style=”display:none” ></iframe>

c.html代碼

復(fù)制代碼
代碼如下:

<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就可以自適應(yīng)為b.html的寬和高了.

其他一些類似js跨域操作問題也可以按這個(gè)思路去解決

標(biāo)簽:日照 寧夏 濟(jì)寧 寧波 贛州 延安 衡水

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《iframe 自適應(yīng)大小實(shí)現(xiàn)代碼》,本文關(guān)鍵詞  iframe,自,適應(yīng),大小,實(shí)現(xiàn),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《iframe 自適應(yīng)大小實(shí)現(xiàn)代碼》相關(guān)的同類信息!
  • 本頁收集關(guān)于iframe 自適應(yīng)大小實(shí)現(xiàn)代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章