この種の問題がありましたが、状況とは少し逆です。他のドメインのサイトにiframe化されたコンテンツを提供していたため、同じ生成元ポリシーも問題でした。グーグルの調査に何時間も費やした後、最終的に(ある程度..)実行可能なソリューションが見つかりました。これは、ニーズに適応できる可能性があります。
同じオリジンポリシーを回避する方法はありますが、iFrameされたコンテンツとフレーミングページの両方で変更を行う必要があるため、両側で変更を要求する機能がない場合、この方法はあまり役に立ちません。私は怖いです。
同じオリジンポリシーを回避できるブラウザの癖があります。JavaScriptは、独自のドメインのページまたはフレーム化されたページと通信できますが、フレーム化されたページとは通信できません。
www.foo.com/home.html, which iframes
|-> www.bar.net/framed.html, which iframes
|-> www.foo.com/helper.html
その後home.html
、framed.html
(iframed)およびhelper.html
(同じドメイン)と通信できます。
Communication options for each page:
+-------------------------+-----------+-------------+-------------+
| | home.html | framed.html | helper.html |
+-------------------------+-----------+-------------+-------------+
| www.foo.com/home.html | N/A | YES | YES |
| www.bar.net/framed.html | NO | N/A | YES |
| www.foo.com/helper.html | YES | YES | N/A |
+-------------------------+-----------+-------------+-------------+
framed.html
helper.html
(iframed)にはメッセージを送信できますが、 home.html
(子は親とクロスドメインで通信できません)。
ここで重要なのはそれがあるhelper.html
からメッセージを受信することができframed.html
、そしてまた、通信することができてhome.html
。
したがって、基本的には、framed.html
ロード時に独自の高さhelper.html
を計算し、に通知します。home.html
これにより、にメッセージが渡され、framed.html
座っているiframeのサイズを変更できます。
からframed.html
にメッセージを渡す最も簡単な方法はhelper.html
、URL引数を使用することでした。これを行うにframed.html
は、src=''
指定されたiframeがあります。そのときonload
火災は、それはそれ自身の高さを評価し、この時点でのiframeのSRCを設定し、helper.html?height=N
facebookがそれをどのように処理するかについての説明がここにあります。これは、上記のものより少し明確かもしれません!
コード
ではwww.foo.com/home.html
、次のjavascriptコードが必要です(これは、偶然にも、任意のドメインの.jsファイルからロードできます。)。
<script>
// Resize iframe to full height
function resizeIframe(height)
{
// "+60" is a general rule of thumb to allow for differences in
// IE & and FF height reporting, can be adjusted as required..
document.getElementById('frame_name_here').height = parseInt(height)+60;
}
</script>
<iframe id='frame_name_here' src='http://www.bar.net/framed.html'></iframe>
でwww.bar.net/framed.html
:
<body onload="iframeResizePipe()">
<iframe id="helpframe" src='' height='0' width='0' frameborder='0'></iframe>
<script type="text/javascript">
function iframeResizePipe()
{
// What's the page height?
var height = document.body.scrollHeight;
// Going to 'pipe' the data to the parent through the helpframe..
var pipe = document.getElementById('helpframe');
// Cachebuster a precaution here to stop browser caching interfering
pipe.src = 'http://www.foo.com/helper.html?height='+height+'&cacheb='+Math.random();
}
</script>
の内容www.foo.com/helper.html
:
<html>
<!--
This page is on the same domain as the parent, so can
communicate with it to order the iframe window resizing
to fit the content
-->
<body onload="parentIframeResize()">
<script>
// Tell the parent iframe what height the iframe needs to be
function parentIframeResize()
{
var height = getParam('height');
// This works as our parent's parent is on our domain..
parent.parent.resizeIframe(height);
}
// Helper function, parse param from request string
function getParam( name )
{
name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
var regexS = "[\\?&]"+name+"=([^&#]*)";
var regex = new RegExp( regexS );
var results = regex.exec( window.location.href );
if( results == null )
return "";
else
return results[1];
}
</script>
</body>
</html>