GreaseMonkey Document.Write 或在最后发布 HTMl?
我试图在我的脚本中使用 document.write(html);
但它看起来非法。我想在 GM 脚本中在文档末尾编写一些 html。我该怎么做?
I am trying to use document.write(html);
in my script but it looks illegal. I would like to write some html at the end of my document in a GM script. How do i do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的是:
更强大和复杂的是使用 DOM 方法:
请参阅 Gecko_DOM_Reference 了解更多信息DOM API。
Simplest would be:
More robust and complex is to use DOM methods:
See the Gecko_DOM_Reference for more info about the DOM API.