0

我想在我的 sencha 应用程序中对 textarea 字段进行拼写检查。

textarea 字段如下:

            {
                xtype:'textareafield',
                id:'txt',
                height:220,                
                autoCorrect:true,


            },

我尝试使用

autoCorrect:true 

这没有帮助。能

  spellcheck="false" 

使用html属性?是否有任何已部署的 WEBSERVICE 可用,以便我可以连接并获取拼写错误的单词?任何帮助表示赞赏。

4

2 回答 2

0

现代浏览器支持拼写检查属性,例如你可以有一个可编辑的 p 标签:

<p contenteditable="true" spellcheck="true">This is a paragraphh. It is editable. Try to change the text.</p>

拼写错误的单词“paragraphh”将带有红色下划线。

您可以使用 JavaScript 像这样动态添加属性:

myTextArea.setElementAttribute("spellcheck", true);
于 2013-07-09T06:58:45.790 回答
0

客户端拼写检查Javascript:

http://www.chrisfinke.com/2011/03/31/announcing-typo-js-client-side-javascript-spellchecking/

于 2013-07-12T06:13:41.497 回答