我正在尝试在以下代码中访问 iframe 的 contentDocument 和 contentWindow。但它们都是空的。
var iframe = document.createElement('iframe');
this.get__domElement$i().appendChild(iframe);
if (iframe.contentDocument) {
iframe.contentDocument.write("Hello");
}
else if (iframe.contentWindow) {
iframe.contentWindow.document.body.innerHTML = "Hello";
}
有人可以告诉我这有什么问题吗?谢谢
当我执行 Document.Body.AppendChild(iframe) 时,contentDocument 和 contentWindow 不为空。
当我将 iframe 附加到 div 时,有人可以告诉我有什么问题吗?
非常感谢。