vue 验证表单 input 不能为中文。

//html
<el-input v-model="form.name" auto-complete="off" style="width: 336px" @input.native="changeCode"></el-input>

//method
changeCode() {
  this.$nextTick(() => {
    if(this.form.name !== null){
      this.form.name = this.form.name.replace(/[^\w\.\/]/ig,'')
    }
  })
},

但是存在一个问题。只能输入英文和数字,无法输入符号之类的。

猜你喜欢

转载自blog.csdn.net/weixin_42127141/article/details/88393159