Change Input to Upper Case

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

JS:



        
15条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-07 22:33

    
    
    
    

    Upper the text on dynamically created element which has attribute upper and when keyup action happens

    $(document.body).on('keyup', '[data-upper]', function toUpper() {
      this.value = this.value.toUpperCase();
    });
    

提交回复
热议问题