微信小程序input输入字母自动转大写不生效问题解决
uniapp中开发的小程序,采用
style="text-transform:uppercase"
H5中正常小写变大写,编译小程序后不生效
解决办法
uniapp中 input增加 @input="TransFormationsFn"
<input type="text" value="" @input="TransFormationsFn" v-model="company_code"
js中增加一个method
TransFormationsFn(){
//小写字母自动转大写
this.company_code = this.company_code.toUpperCase()
},
问题解决