2016-03-01 30 views
1

我有this webpage,我有這個textarea的如何在Android上以小寫字母輸入字段中的文本?

<textarea class="clipboard"></textarea> 

,我使用移動的條目,當我輸入的東西總是大寫字母開頭(鍵盤是在第一個字母大寫模式)哪能禁用此功能?

當我添加left: -9999999px時,它已修復但頁面不會隨輸入一起滾動。

+0

檢查此答案我將啓動小寫鍵盤[答](http://stackoverflow.com/questions/20961585/android-keyboard-start-lowercase) – Dayvon

+0

@Dayvon它是關於本機應用程序,我需要的解決方案一個網頁。 – jcubic

+0

現在檢查它會幫助你[這裏](http://stackoverflow.com/questions/4322314/convert-uppercase-letter-to-lowercase-and-first-uppercase-in-sentence-using-css) – Dayvon

回答

7

使用autocompleteautocapitalizeautocorrectspellcheck屬性:

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

適用於Chrome開發(最新)和Android 5.1.1與谷歌鍵盤和鍵盤AOSP。不適用於SwiftKey Neural(在Alpha BTW中)。

+0

它爲我的新手機用android 6工作。 – jcubic

相關問題