Change Input to Upper Case

前端 未结 15 817
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-07 22:02

JS:



        
15条回答
  •  感动是毒
    2020-12-07 22:42

    try:

    $('#search input.keywords').bind('change', function(){
        //this.value.toUpperCase();
        //EDIT: As  Mike Samuel suggested, this will be more appropriate for the job
        this.value = this.value.toLocaleUpperCase();
    } );
    

提交回复
热议问题