我正在编写一个动态填充iframe
内容的代码。下面的示例依赖于document
的{{1}}对象:
iframe
如果我使用父function createIFrame() {
var iframe = document.createElement("iframe");
iframe.onload = function() {fillIFrame(iframe);};
}
function fillIFrame(iframe) {
// Creating an "header" element with the embedded Document object.
var ifdocument = iframe.contentDocument;
var header = ifdocument.createElement("header");
header.appendChild(ifdocument.createTextNode("Header."));
ifdocument.body.appendChild(header);
}
对象用这种方式重写iframe
填充:
document
它仍然有效。这两种方法之间是否有任何相关的区别?