这是我与客户遇到的确切问题。我创建了一个似乎适用于 iframe 准备工作的小 jquery 插件。它使用轮询来检查 iframe 文档 readyState 以及内部文档 url 以及 iframe 源,以确保 iframe 实际上是“准备好”的。
“onload”的问题是您需要访问被添加到 DOM 的实际 iframe,如果您不这样做,那么您需要尝试捕获 iframe 加载,如果它被缓存,那么您可能不会。我需要的是一个可以随时调用的脚本,并确定 iframe 是否“准备好”。
这是问题:
确定本地 iframe 是否已加载的圣杯
这是我最终想出的jsfiddle。
https://jsfiddle.net/q0smjkh5/10/
在上面的 jsfiddle 中,我正在等待 onload 将 iframe 附加到 dom,然后检查 iframe 的内部文档的就绪状态——这应该是跨域的,因为它指向维基百科——但 Chrome 似乎报告“完成”。然后,当 iframe 实际上准备就绪时,将调用插件的 iready 方法。回调尝试再次检查内部文档的就绪状态 - 这次报告跨域请求(这是正确的) - 无论如何它似乎可以满足我的需要并希望它可以帮助其他人。
<script>
(function($, document, undefined) {
$.fn["iready"] = function(callback) {
var ifr = this.filter("iframe"),
arg = arguments,
src = this,
clc = null, // collection
lng = 50, // length of time to wait between intervals
ivl = -1, // interval id
chk = function(ifr) {
try {
var cnt = ifr.contents(),
doc = cnt[0],
src = ifr.attr("src"),
url = doc.URL;
switch (doc.readyState) {
case "complete":
if (!src || src === "about:blank") {
// we don't care about empty iframes
ifr.data("ready", "true");
} else if (!url || url === "about:blank") {
// empty document still needs loaded
ifr.data("ready", undefined);
} else {
// not an empty iframe and not an empty src
// should be loaded
ifr.data("ready", true);
}
break;
case "interactive":
ifr.data("ready", "true");
break;
case "loading":
default:
// still loading
break;
}
} catch (ignore) {
// as far as we're concerned the iframe is ready
// since we won't be able to access it cross domain
ifr.data("ready", "true");
}
return ifr.data("ready") === "true";
};
if (ifr.length) {
ifr.each(function() {
if (!$(this).data("ready")) {
// add to collection
clc = (clc) ? clc.add($(this)) : $(this);
}
});
if (clc) {
ivl = setInterval(function() {
var rd = true;
clc.each(function() {
if (!$(this).data("ready")) {
if (!chk($(this))) {
rd = false;
}
}
});
if (rd) {
clearInterval(ivl);
clc = null;
callback.apply(src, arg);
}
}, lng);
} else {
clc = null;
callback.apply(src, arg);
}
} else {
clc = null;
callback.apply(this, arguments);
}
return this;
};
}(jQuery, document));
</script>