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

后端 未结 5 761
不知归路
不知归路 2021-02-07 02:37

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 using jQuery?

5条回答
  •  野趣味
    野趣味 (楼主)
    2021-02-07 02:58

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

提交回复
热议问题