0

我想對我的sencha應用程序中的textarea字段進行拼寫檢查。在Sencha Textarea中拼寫檢查

textarea的領域如下:

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


      }, 

我嘗試使用

autoCorrect:true 

這並沒有幫助。 Can

spellcheck="false" 

html property will be used?是否有任何部署的WEBSERVICE可用,以便我可以連接並獲取拼寫錯誤的單詞?任何幫助表示讚賞。

回答

0

現代瀏覽器都支持拼寫檢查屬性,因此,例如,你可以有一個可編輯的p標籤:「paragraphh」將用紅色下劃線標註

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

拼錯的單詞。

您可以動態地添加屬性像這樣用JavaScript:

myTextArea.setElementAttribute("spellcheck", true); 
+0

感謝您的答覆。但拼寫檢查適用於桌面瀏覽器,同樣不適用於移動設備。請看我更新的問題 – Akshatha