input 输入字母转化为大写

329 阅读1分钟
 第一种方式

<input type="text" onkeyup="this.value = this.value.toUpperCase();">


2. 第二种方式 :  这个方式 只会在页面上显示大写,如果当参数传入后端还是会传小写
<input type="text" style="text-transform:uppercase"">

小写:lowercase,首字母大写: capitalize