gpt4 book ai didi

Javascript:document.write ("hello world") 一开始有效,但

转载 作者:行者123 更新时间:2023-11-30 06:47:50 25 4
gpt4 key购买 nike

Javascript:document.write("hello world") 一开始可以工作,但如果您更改文本,它对下一个文本不起作用。

重现:在您的地址栏中:

  1. 输入 http://nazmulweb.com或任何其他网址

  2. 加载页面后,键入 Javascript:document.write("hello world")

  3. 浏览器会显示“hello world”,不是吗?

  4. 然后输入 javascript:document.write('hello stackoverflow users!')

这次浏览器不更新文本。可能是什么原因?


“我的目标是什么?”


我正在使用以下代码编写 Iframe

function writeInIframe(data){   
var previewWindow=$("pwFrame").contentWindow;
if (previewWindow.document) {
previewWindow.document.open();
previewWindow.document.write(data);
previewWindow.document.close();
}
}

第一次数据在 Iframe 中正确显示,但后来,新数据没有在 Iframe 中更新。

最佳答案

来自 MDC :

Writing to a document that has already loaded without calling document.open() will automatically perform a document.open call. Once you have finished writing, it is recommended to call document.close(), to tell the browser to finish loading the page. The text you write is parsed into the document's structure model.

关于Javascript:document.write ("hello world") 一开始有效,但,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4624068/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com