使用 JavaScript 的动态内容填充 IFRAME

发布于 2024-08-29 05:27:07 字数 249 浏览 8 评论 0原文

我有一个 IFRAME,应该填充来自 JavaScript 的内容。如果内容位于服务器上,我所要做的就是:

    function onIFrameFill() {
         myIframe.location.href = "HelloWorld.html";
     }

但是我拥有的内容是在客户端上生成的 HTML 页面,并表示为字符串(我对其影响不大)。如何以编程方式填充 iframe 的内容?

I have an IFRAME that should be filled with content from JavaScript. Had the content be on the server all I had to do is:

    function onIFrameFill() {
         myIframe.location.href = "HelloWorld.html";
     }

But the content I have is a HTML page generated on the client and represented as a string (I have not much influence on it). How can I populate the content of the my iframe programatically?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

岁吢 2024-09-05 05:27:07

我想你正在寻找类似的东西:

var iframeDoc = myIframe.contentWindow.document;
iframeDoc.open();
iframeDoc.write('hello world');
iframeDoc.close();

I think you're looking for something like:

var iframeDoc = myIframe.contentWindow.document;
iframeDoc.open();
iframeDoc.write('hello world');
iframeDoc.close();
乙白 2024-09-05 05:27:07

尝试设置 .innerHTML 但这不起作用。 Jeffery To 的解决方案有效。只是想补充一点 myIframe.contentWindow 可能无法在旧浏览器中工作(阅读 IE 旧版本),因此您可以

var iFrameWindow = myIframe.contentWindow || myIframe.documentWindow;
var iFrameDoc = iFrameWindow.document;

使用文档 open()、write() & ; close() 如上所述。

Tried setting .innerHTML but that does not work. Solution by Jeffery To works. Just want to add that myIframe.contentWindow might not work in old browsers (read IE old versions) so you can do

var iFrameWindow = myIframe.contentWindow || myIframe.documentWindow;
var iFrameDoc = iFrameWindow.document;

then use the document open(), write() & close() as above.

仲春光 2024-09-05 05:27:07

与 Jeffry 类似,但使用 contentDocument 代替。

let iframe = document.querySelector('iframe');
let doc = iframe.contentDocument;
doc.open();
doc.write('Hello world!');
doc.close();

Similar to Jeffry but using contentDocument instead.

let iframe = document.querySelector('iframe');
let doc = iframe.contentDocument;
doc.open();
doc.write('Hello world!');
doc.close();
如梦亦如幻 2024-09-05 05:27:07

.innerHTML 怎么样?

myIframe.innerHTML = "This is some HTML <b>text</b>";

What about .innerHTML?

myIframe.innerHTML = "This is some HTML <b>text</b>";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文