无法使用Javascript与其他来源的iFrame进行交互,以获取其大小;唯一的方法是将其window.postMessage
与targetOrigin
您的域中的设置一起使用,或与*
iFrame源中的wildchar一起使用。您可以代理不同来源站点的内容并使用srcdoc
,但这被认为是一种hack,它不适用于SPA和许多其他动态页面。
相同来源的iFrame大小
假设我们有两个相同的原始iFrame,其中一个是矮高和固定宽度:
<!-- 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大小,然后使用以下代码iframe.contentWindow.document
将其发送到父窗口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大小hack(不推荐))
这里描述的方法是一种技巧,如果绝对必要并且没有其他方法可以使用。它不适用于大多数动态生成的页面和SPA。该方法使用代理来获取HTML页面的源代码,以绕过CORS策略(这cors-anywhere
是创建简单的CORS代理服务器的简单方法,并且具有在线演示https://cors-anywhere.herokuapp.com
),然后向该HTML注入JS代码以使用postMessage
并发送HTML 的大小iFrame到父文档。它甚至可以处理iFrame resize
(与iFrame结合使用width: 100%
)事件,并将iFrame大小发回给父对象。
patchIframeHtml
:
该功能可以修补iFrame的HTML代码,并注入自定义JavaScript将使用postMessage
到的iFrame大小发送到母公司的load
和resize
。如果该origin
参数有一个值,则将<base/>
使用该原始URL 在HTML 元素之前添加一个HTML 元素,因此,类似的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
设置了参数,则使用代理获取绕过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>
而且,即使overflow-y: auto
将iFrame主体用于iFrame ,我们也可以将iFrame调整到其内容全高的大小,而无需进行任何垂直滚动(应该这样,overflow-y: hidden
因此在resize上不会出现滚动条闪烁)。
您可以在此处在线检查。
再次注意这是骇客,应该避免 ; 我们无法访问跨域 iFrame文档,也无法注入任何东西。