[轉]利用location.hash實現跨域iframe自適應高寬
覺得寫得不錯,以前工作的時候也想過做frame的自適應高度的,可惜沒做成。現在終於學到了。
頁面域關係:
主頁面a.html所屬域A:www.taobao.com
被iframe的頁面b.html所屬域B:www.alimama.com,假設地址:http://www.alimama.com/b.html
實現效果:
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.alimama.com/b.html” frameborder=”no” border=”0px” marginwidth=”0″ marginheight=”0″ scrolling=”no” allowtransparency=”yes” ></iframe>
b.html程式碼
<iframe id=”c_iframe” height=”0″ width=”0″ src=”http://www.taobao.com/c.html” style=”display:none” ></iframe>
<script type=”text/javascript”>
var b_width = Math.max(document.body.scrollWidth,document.body.clientWidth);
var b_height = Math.max(document.body.scrollHeight,document.body.clientHeight);
var c_iframe = document.getElementById(“c_iframe”);
c_iframe.src = c_iframe.src+”#”+b_width+”|”+b_height; //http://www.taobao.com/c.html#width|height”
}
</script>
<!–js讀取b.html的寬和高,把讀取到的寬和高設定到和a.html在同一個域的中間代理頁面車c.html的src的hash裡面–>
c.html程式碼
<script type=”text/javascript”>
var b_iframe = window.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跨域操作問題也可以按這個思路去解決
轉自:http://ued.alimama.com/front-end/use-location-hash-to-auto-sizing/
頁面域關係:
主頁面a.html所屬域A:www.taobao.com
被iframe的頁面b.html所屬域B:www.alimama.com,假設地址:http://www.alimama.com/b.html
實現效果:
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.alimama.com/b.html” frameborder=”no” border=”0px” marginwidth=”0″ marginheight=”0″ scrolling=”no” allowtransparency=”yes” ></iframe>
b.html程式碼
<iframe id=”c_iframe” height=”0″ width=”0″ src=”http://www.taobao.com/c.html” style=”display:none” ></iframe>
<script type=”text/javascript”>
var b_width = Math.max(document.body.scrollWidth,document.body.clientWidth);
var b_height = Math.max(document.body.scrollHeight,document.body.clientHeight);
var c_iframe = document.getElementById(“c_iframe”);
c_iframe.src = c_iframe.src+”#”+b_width+”|”+b_height; //http://www.taobao.com/c.html#width|height”
}
</script>
<!–js讀取b.html的寬和高,把讀取到的寬和高設定到和a.html在同一個域的中間代理頁面車c.html的src的hash裡面–>
c.html程式碼
<script type=”text/javascript”>
var b_iframe = window.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跨域操作問題也可以按這個思路去解決
轉自:http://ued.alimama.com/front-end/use-location-hash-to-auto-sizing/
相關文章
- iframe 跨域高度自適應跨域
- Iframe嵌入跨域頁面高度自適應實現詳解跨域
- iframe巢狀(等寬高比自適應:aspectRatio)巢狀
- jquery 實現iframe 自適應高度jQuery
- 實現iframe內容的自適應
- jquery實現的iframe高度自適應效果jQuery
- javascript實現的iframe高度自適應程式碼JavaScript
- CSS實現背景圖片固定寬高比自適應調整CSS
- CSS實現圖片寬度自適應CSS
- QTableWidget行高列寬自適應QT
- ajax應用實現iframe高度自適應程式碼例項
- html iframe高度自適應HTML
- 固定寬度下,CSS 實現自適應文字CSS
- jquery實現的iframe高度自適應程式碼例項jQuery
- app直播原始碼,Flutter 寬高自適應APP原始碼Flutter
- CSS實現寬高等比例自適應矩形CSS
- 原生javascript實現的iframe高度自適應程式碼例項JavaScript
- 實現跨域iframe介面方法呼叫 簡單介紹跨域
- CSS 圖片固定長寬比實現高度自適應CSS
- (幾乎)完美實現 el-table 列寬自適應
- iframe自適應高度的外掛
- iframe高度自適應解決方案
- UMeditor寬度自適應
- css實現的左右兩列寬度固定中間寬度自適應CSS
- 自動載入的iframe高度自適應
- input文字框實現寬度自適應程式碼例項
- iframe 元素跨域訪問跨域
- iframe高度自適應程式碼例項
- <iframe>高度自適應程式碼例項
- 【CSS】三欄/兩欄寬高自適應佈局大全CSS
- 利用@media screen實現網頁佈局的自適應網頁
- 如何獲取跨域iframe高度跨域
- IFrame跨域問題筆記跨域筆記
- IE中iframe跨域訪問跨域
- Vue嵌入iframe,iframe如何跨域呼叫vue內路由Vue跨域路由
- 真正解決iframe高度自適應問題
- gridview自動適應列寬View
- input文字框寬度自適應