HTML - How can i disable auto text correction in m

2020-06-06 07:52发布

My textarea contains C# code, so i get red underlines all over the place, is there any way to disable auto correction on a TEXTAREA in html code?

Thank

3条回答
贼婆χ
2楼-- · 2020-06-06 08:30

There are two more attributes other than spellcheck="false" for iOS (probably Android too) that you might need to add to your text inputs to avoid OS interferer with text content:

  • autocorrect="off" for avoiding to complete or suggest a word
  • autocapitalize="off" for avoiding OS transforming book to Book
  • spellcheck="false" for avoiding OS from highlighting spell errors

enter image description here

查看更多
在下西门庆
3楼-- · 2020-06-06 08:35

I believe you may be looking for <textarea spellcheck="false"></textarea>

Source: https://developer.mozilla.org/en/controlling_spell_checking_in_html_forms

查看更多
做自己的国王
4楼-- · 2020-06-06 08:50

Try adding the following code to your textarea:

 spellcheck="false"
查看更多
登录 后发表回答