GreaseMonkey Document.Write 或在最后发布 HTMl?

发布于 2024-09-13 20:00:10 字数 93 浏览 1 评论 0原文

我试图在我的脚本中使用 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 技术交流群。

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

发布评论

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

评论(1

秋风の叶未落 2024-09-20 20:00:10

最简单的是:

document.body.innerHTML += 'some html';

更强大和复杂的是使用 DOM 方法:

var myDiv = document.createElement('div');
myDiv.innerHTML = 'some text'; // yes, yes I am cheating here again but
                               // what did you expect from a short example?

document.body.appendChild(myDiv);

请参阅 Gecko_DOM_Reference 了解更多信息DOM API。

Simplest would be:

document.body.innerHTML += 'some html';

More robust and complex is to use DOM methods:

var myDiv = document.createElement('div');
myDiv.innerHTML = 'some text'; // yes, yes I am cheating here again but
                               // what did you expect from a short example?

document.body.appendChild(myDiv);

See the Gecko_DOM_Reference for more info about the DOM API.

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