如何在phonegap中为Android自动大写文本输入

How to Auto-Capitalize a text input in phonegap for Android?

本文关键字:文本 输入 Android phonegap 中为      更新时间:2023-12-08

有没有一种(非黑客)方法可以在Android的phonegap中设置autocapitalize="on"(类似于iOS)?

如果没有,在用户关注诸如<input ... type="text">之类的表单字段后,是否有任何方法可以"自动按下"shift?

您可以使用文本区域宽度-高度:22px(或更多)。

<textarea style="height: 22px" ...></textarea>

意外发现,使用带cordova 1.9.0 的ICS

通过jQuery:

$('input[type="text"]').on('keypress', function() { 
    var $this = $(this), value = $this.val(); 
    if (value.length === 1) { 
      $this.val( value.charAt(0).toUpperCase() );
    }  
});

只需使用css

input[type=text] {
    text-transform:uppercase;
}