congxueda

VUE -input输入框字母转大写

示例:

输入自动转--->大写

 

 

 

 <input type="text" placeholder="请输入证件号码" maxlength="18" v-model="codeval" >

 

JS

 

codeval: 监听输入值
card_id: 更改后的值,程序使用值
data: {
  card_id : \'\'

},
computed: { codeval: { get:
function () { return this.card_id; }, set: function (val) { this.card_id = val.toUpperCase(); } } }

 

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2021-06-07
  • 2022-12-23
  • 2022-12-23
  • 2021-08-04
猜你喜欢
  • 2022-01-02
  • 2021-12-18
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-22
相关资源
相似解决方案