How to start text in input field with lowercase on Android?

前端 未结 1 1431
清酒与你
清酒与你 2021-01-20 23:49

I have this webpage and I have this textarea


that I use to for mobile entry, and when I t

相关标签:
1条回答
  • 2021-01-21 00:23

    Use the autocomplete, autocapitalize, autocorrect and spellcheck attributes:

    <textarea autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"></textarea>
    

    Works on Chrome Dev (latest) and Android 5.1.1 with Google Keyboard and AOSP Keyboard. Doesn't work with SwiftKey Neural (which is in Alpha BTW).

    0 讨论(0)
提交回复
热议问题