Forcing form text to be lower-case

前端 未结 11 1175
面向向阳花
面向向阳花 2021-02-02 10:16

How could I force the text in the \"username\" text input to be lower-case regardless of what user types?

11条回答
  •  臣服心动
    2021-02-02 11:10

    Using jquery assuming that the input ID is username:

    $(document).ready(function(){
        $("#username").on('input', function(){
            $(this).val( $(this).val().toLowerCase() );
        })
    });
    

提交回复
热议问题