JavaScriptを使用して別のオリジンiFrameとやり取りしてサイズを取得することはできません。これを行う唯一の方法は、ドメインに設定するか、iFrameソースのwildchar を使用window.postMessage
することです。さまざまな配信元サイトのコンテンツをプロキシしてを使用できますが、これはハックと見なされ、SPAやその他の多くの動的ページでは機能しません。targetOrigin
*
srcdoc
同じ原点のiFrameサイズ
2つの同じ原点iFrameがあり、1つは高さが低く、幅は固定されているとします。
<!-- iframe-short.html -->
<head>
<style type="text/css">
html, body { margin: 0 }
body {
width: 300px;
}
</style>
</head>
<body>
<div>This is an iFrame</div>
<span id="val">(val)</span>
</body>
長い高さのiFrame:
<!-- iframe-long.html -->
<head>
<style type="text/css">
html, body { margin: 0 }
#expander {
height: 1200px;
}
</style>
</head>
<body>
<div>This is a long height iFrame Start</div>
<span id="val">(val)</span>
<div id="expander"></div>
<div>This is a long height iFrame End</div>
<span id="val">(val)</span>
</body>
をload
使用iframe.contentWindow.document
して親ウィンドウに送信するイベントを使用して、iFrameサイズを取得できますpostMessage
。
<div>
<iframe id="iframe-local" src="iframe-short.html"></iframe>
</div>
<div>
<iframe id="iframe-long" src="iframe-long.html"></iframe>
</div>
<script>
function iframeLoad() {
window.top.postMessage({
iframeWidth: this.contentWindow.document.body.scrollWidth,
iframeHeight: this.contentWindow.document.body.scrollHeight,
params: {
id: this.getAttribute('id')
}
});
}
window.addEventListener('message', ({
data: {
iframeWidth,
iframeHeight,
params: {
id
} = {}
}
}) => {
// We add 6 pixels because we have "border-width: 3px" for all the iframes
if (iframeWidth) {
document.getElementById(id).style.width = `${iframeWidth + 6}px`;
}
if (iframeHeight) {
document.getElementById(id).style.height = `${iframeHeight + 6}px`;
}
}, false);
document.getElementById('iframe-local').addEventListener('load', iframeLoad);
document.getElementById('iframe-long').addEventListener('load', iframeLoad);
</script>
両方のiFrameに適切な幅と高さを取得します。ここでオンラインで確認し、スクリーンショットをここで確認できます。
異なる発信元のiFrameサイズのハック(非推奨)
ここで説明する方法はハックであり、絶対に必要で他に方法がない場合に使用する必要があります。ほとんどの動的に生成されたページとSPA では機能しません。このメソッドは、プロキシを使用してページのHTMLソースコードをフェッチし、CORSポリシーをバイパスcors-anywhere
します(シンプルなCORSプロキシサーバーを作成する簡単な方法であり、オンラインデモがありますhttps://cors-anywhere.herokuapp.com
)。次に、そのHTMLにJSコードを挿入して、使用postMessage
するサイズを送信します。親ドキュメントへのiFrame。さらに、iFrame resize
(iFrame と組み合わせたwidth: 100%
)イベントを処理し、iFrameのサイズを親に返します。
patchIframeHtml
:
iFrameのHTMLコードと使用する注入カスタムJavascriptのパッチを適用するための機能postMessage
上の親にiFrameのサイズを送信するためにload
、オンをresize
。origin
パラメータの値がある場合、HTML <base/>
要素はその元のURLを使用して先頭に追加されます。したがって、HTMLのURIなど/some/resource/file.ext
はiFrame内の元のURLによって適切にフェッチされます。
function patchIframeHtml(html, origin, params = {}) {
// Create a DOM parser
const parser = new DOMParser();
// Create a document parsing the HTML as "text/html"
const doc = parser.parseFromString(html, 'text/html');
// Create the script element that will be injected to the iFrame
const script = doc.createElement('script');
// Set the script code
script.textContent = `
window.addEventListener('load', () => {
// Set iFrame document "height: auto" and "overlow-y: auto",
// so to get auto height. We set "overlow-y: auto" for demontration
// and in usage it should be "overlow-y: hidden"
document.body.style.height = 'auto';
document.body.style.overflowY = 'auto';
poseResizeMessage();
});
window.addEventListener('resize', poseResizeMessage);
function poseResizeMessage() {
window.top.postMessage({
// iframeWidth: document.body.scrollWidth,
iframeHeight: document.body.scrollHeight,
// pass the params as encoded URI JSON string
// and decode them back inside iFrame
params: JSON.parse(decodeURIComponent('${encodeURIComponent(JSON.stringify(params))}'))
}, '*');
}
`;
// Append the custom script element to the iFrame body
doc.body.appendChild(script);
// If we have an origin URL,
// create a base tag using that origin
// and prepend it to the head
if (origin) {
const base = doc.createElement('base');
base.setAttribute('href', origin);
doc.head.prepend(base);
}
// Return the document altered HTML that contains the injected script
return doc.documentElement.outerHTML;
}
getIframeHtml
:
useProxy
paramが設定されている場合、プロキシを使用してCORSをバイパスするページHTMLを取得する関数。postMessage
サイズデータを送信するときにに渡される追加のパラメーターがある場合があります。
function getIframeHtml(url, useProxy = false, params = {}) {
return new Promise(resolve => {
const xhr = new XMLHttpRequest();
xhr.onreadystatechange = function() {
if (xhr.readyState == XMLHttpRequest.DONE) {
// If we use a proxy,
// set the origin so it will be placed on a base tag inside iFrame head
let origin = useProxy && (new URL(url)).origin;
const patchedHtml = patchIframeHtml(xhr.responseText, origin, params);
resolve(patchedHtml);
}
}
// Use cors-anywhere proxy if useProxy is set
xhr.open('GET', useProxy ? `https://cors-anywhere.herokuapp.com/${url}` : url, true);
xhr.send();
});
}
メッセージイベントハンドラー関数は、「同じ原点のiFrameサイズ」とまったく同じです。
カスタムJSコードが挿入されたiFrame内にクロスオリジンドメインを読み込むことができます。
<!-- It's important that the iFrame must have a 100% width
for the resize event to work -->
<iframe id="iframe-cross" style="width: 100%"></iframe>
<script>
window.addEventListener('DOMContentLoaded', async () => {
const crossDomainHtml = await getIframeHtml(
'https://en.wikipedia.org/wiki/HTML', true /* useProxy */, { id: 'iframe-cross' }
);
// We use srcdoc attribute to set the iFrame HTML instead of a src URL
document.getElementById('iframe-cross').setAttribute('srcdoc', crossDomainHtml);
});
</script>
そして、我々は、任意の垂直方向のスクロールにも使用しなくても、それの内容に完全な高さをサイズにiFrameを取得しますoverflow-y: auto
(iFrameのボディのために、それがあるべきoverflow-y: hidden
我々はリサイズのちらつきスクロールバーを取得しないように)。
こちらからオンラインで確認できます。
ここでもハッキングであり、回避する必要があることに注意してください。Cross-Origin iFrameドキュメントにアクセスしたり、あらゆるものを挿入したりすることはできません。