如何用javascript更改网页的所有文本?
我想用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不清楚你的问题,但如果你只想替换页面的整个文本,那就这样做
不会影响标题,但你可以通过
如果你想用文本替换网页 来更改标题,那么你可以做
I'm unclear on your question, but if you just want to replace the entire text of a page, just do
That won't affect the title, but you can change the title via
If you want to replace a web-page with text, then you can do
如果您想保留所有 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 theinnerhtml
of all the elements in the page. It's straightforward but tedious.