我已经像这样动态创建了I帧:
link = window.location.href;
var iframe = document.createElement('iframe');
iframe.setAttribute("src", link);
document.body.appendChild(iframe);
我的页面只是一个本地文件。我有一张表。我正在用
复制该表cloneNode(true);
并插入:
document.body.appendChild(newTable);
但在我的Iframe中,这个动态创建的表不存在。 那我该怎么办?
UPD:另一个问题在Chrome中有效,但在ie和firefox中所有Iframe内容都是空的只是空页
UPD2:
我只是将iframe上传并按照以下方式创建:
link = window.location.href;
var iframe = document.createElement('iframe');
iframe.setAttribute("src", link);
document.body.appendChild(iframe);
在Ie和FF中,它显示了Iframe中的空白页面。