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