开发者

How to make everything in a textfield be capital letters / uppercase?

开发者 https://www.devze.com 2023-01-19 03:41 出处:网络
I want to make everything I write in a textfield to be capital letters. As I write, not after losing focus.

I want to make everything I write in a textfield to be capital letters. As I write, not after losing focus.

How do I do this us开发者_开发百科ing jQuery?


I would use CSS for this.

Just add text-transform: uppercase to your styling, and then on the server side you can convert it to uppercase.

input {
  text-transform: uppercase;
}


$('input[type=text]').keyup(function() {
    $(this).val($(this).val().toUpperCase());
});


Use
oninput='this.value=this.value.toUpperCase();
This event is just for such cases, is fired after user input (pressing key) but before updating (displaying value), so with this typed text won't flicker while converting, and value is also correct (not like using only style to alter display without changing real data).


You may need to use combination of these.

using the text-transform style only renders the type in upper-case, although the value may well be lower case.

The javascript will only change current text to upper once the field changes or focus is lost

you can use gazler's jquery or simply inline javascript

e.g. onblur='javascript:this.value=this.value.toUpperCase();'

This means that the text value will appear uppercase and actually be uppercased when the value changes / control loses focus.

HTH Sam


To build on @Gazler's answer, an enhanced solution that better handles modifier keys ( assuming that you have a placeholder of mixed case and cannot set text-transform: uppercase; ):

$('.search-input input[type=text]').keyup(function() {
    var v = $(this).val();
    var u = v.toUpperCase();
    if( v != u ) $(this).val( u );
})
0

精彩评论

暂无评论...
验证码 换一张
取 消