如何用javascript更改网页的所有文本?

发布于 2024-12-08 19:59:10 字数 120 浏览 0 评论 0原文

我想用 JavaScript 更改网页中的所有文本

我想制作一个应用程序,可以更改 HTML 页面的文本以替换正确的文本,而不是错误或不正确的文本。

你以为我想做一个像谷歌翻译一样的应用程序;)

I want to change all of the text in the web page with JavaScript

I want to make an application that's can change the text of an HTML page for replace correct text instead of wrong or incorrect text.

you think i want to make an app just like Google translator;)

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

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

发布评论

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

评论(2

相思碎 2024-12-15 19:59:12

我不清楚你的问题,但如果你只想替换页面的整个文本,那就这样做

document.body.innerHTML = 'replacement HTML';

不会影响标题,但你可以通过

document.title = 'replacement plain text';

如果你想用文本替换网页 来更改标题,那么你可以做

while (document.body.firstChild)
  document.body.removeChild(document.body.firstChild);
document.body.appendChild(document.createTextNode(myText));

I'm unclear on your question, but if you just want to replace the entire text of a page, just do

document.body.innerHTML = 'replacement HTML';

That won't affect the title, but you can change the title via

document.title = 'replacement plain text';

If you want to replace a web-page with text, then you can do

while (document.body.firstChild)
  document.body.removeChild(document.body.firstChild);
document.body.appendChild(document.createTextNode(myText));
很快妥协 2024-12-15 19:59:12

如果您想保留所有 div 和布局并且只想更改文本,则无法更改正文的 innerhtml 。您必须单独更改页面中所有元素的innerhtml。这很简单,但很乏味。

If you want to keep all divs and layouts and want only to to change the text, you cannot change the innerhtml of the body. You must separately change the innerhtml of all the elements in the page. It's straightforward but tedious.

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