gpt4 book ai didi

javascript - 如何在运行时添加脚本? (document.write不是函数)

转载 作者:行者123 更新时间:2023-11-28 10:19:39 27 4
gpt4 key购买 nike

我尝试在运行时向我的 Xul 应用程序添加脚本,方法是:

document.write('<script type="text/javascript" src="chrome://myapp/content/myscript.js"/>');

但是我得到了:

Error: document.write is not a function

该函数确实存在in the docs 。我还从文档中得到了这个示例:

document.open();
document.write("<h1>Out with the old - in with the new!</h1>");
document.close();

但是我得到了:

document.open is not a function

知道出了什么问题吗?

--更新

也许我可以将我的 js 代码放入 Javacript 模块中并使用 Components.utils.import 导入它(寻找放置资源的位置以及如何引用它)

最佳答案

如果您使用 XHTML,则 document.write 函数不可用;请参阅:http://www.w3.org/MarkUp/2004/xhtml-faq#docwrite 。您可能正在使用 XHTML。

您应该评估是否确实需要使用 XHTML。如果没有,那么您将能够使用document.write。但如果这样做,您将需要使用另一种方法来操作 DOM。您可以直接使用 DOM 方法来完成此操作,也可以使用 jQuery 等辅助库。

关于javascript - 如何在运行时添加脚本? (document.write不是函数),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5888910/

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