有没有办法用 Javascript 在文本区域中 return 拼写错误的单词?
Is there a way to return misspelled words in a textarea with Javascript?
我想创建一个函数来创建文本区域内拼写错误的单词列表。有没有办法根据默认的dictionary/spellchecker拼错红色下划线的单词?
我知道我可以使用 'my own' 的字典来完成并检查它,但我的目标是使用文本框的自动拼写检查器来完成。
提前致谢。
很难证明是否定的,但我认为用户代理不会将这些信息提供给您的代码。 HTMLTextAreaElement
or Text
interfaces for it, for instance, nor on Document
or Navigator
. Nothing in the description of the spellcheck
attribute mentions it. The HTML spec's Spelling and grammar checking 部分没有提到任何内容。
不过 horizon 可能还有希望。 CSS 正在添加 ::spelling-error
pseudo class,尽管浏览器尚不支持它。虽然这不会帮助您做您正在做的事情,但它表明至少 一些 有兴趣允许页面以某种方式与此信息交互。所以它可能有一天会发生。
我想创建一个函数来创建文本区域内拼写错误的单词列表。有没有办法根据默认的dictionary/spellchecker拼错红色下划线的单词?
我知道我可以使用 'my own' 的字典来完成并检查它,但我的目标是使用文本框的自动拼写检查器来完成。 提前致谢。
很难证明是否定的,但我认为用户代理不会将这些信息提供给您的代码。 HTMLTextAreaElement
or Text
interfaces for it, for instance, nor on Document
or Navigator
. Nothing in the description of the spellcheck
attribute mentions it. The HTML spec's Spelling and grammar checking 部分没有提到任何内容。
不过 horizon 可能还有希望。 CSS 正在添加 ::spelling-error
pseudo class,尽管浏览器尚不支持它。虽然这不会帮助您做您正在做的事情,但它表明至少 一些 有兴趣允许页面以某种方式与此信息交互。所以它可能有一天会发生。