如何关闭整个网站中每个控件的拼写检查?

huangapple go评论108阅读模式
英文:

How to turn off spellcheck for every control in the whole website?

问题

现在,我关闭了网站上HTML控件的拼写检查,使用spellcheck="false"。而不是为每个控件逐个设置属性,我如何使其在整个网站的所有控件上都起作用?

一个显示拼写检查错误的控件示例:

如何关闭整个网站中每个控件的拼写检查?

英文:

Right now, I turn off the spellcheck for HTML controls in the website with spellcheck="false". Instead of setting the attribute one at a time for every control, how can I make it work for all controls in the entire website?

An example of a control where the spell check error is shown:

如何关闭整个网站中每个控件的拼写检查?

答案1

得分: 1

> spellcheck 全局属性是一个枚举属性,用于定义元素是否可以检查拼写错误。

作为全局属性,它可以设置在任何元素上。虽然并非所有全局属性对所有元素都产生影响,但为任何元素设置 spellcheck="false" 似乎会禁用其所有后代元素的拼写检查。

因此,您可以将其放在这里的 body 上,并且应该在您的所有内容中关闭它(除非在DOM树的下方明确指定其他情况)。

英文:

https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/spellcheck:

> The spellcheck global attribute is an enumerated attribute that defines whether the element may be checked for spelling errors.

As a global attribute, it can be set on any element. Although not all global attributes have an effect on all elements, setting spellcheck="false" for any element, appears to disable it for all descendants as well.

So you can put it on body here, and should have it off for all your content (unless explicitly specified otherwise further down the DOM tree.)

huangapple
  • 本文由 发表于 2023年6月22日 20:43:45
  • 转载请务必保留本文链接:https://go.coder-hub.com/76532049.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定